mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nix-repo.git
synced 2025-02-16 22:24:27 +00:00
Switch graphql-core
This commit is contained in:
parent
e4651e28e7
commit
932febd3dc
36
default.nix
36
default.nix
|
@ -14,30 +14,30 @@ self: super: rec {
|
|||
];
|
||||
propagatedBuildInputs = with self.python39Packages; [
|
||||
typing-extensions
|
||||
# graphql-core
|
||||
graphql-core
|
||||
python-multipart
|
||||
python-dateutil
|
||||
flask
|
||||
pydantic
|
||||
pygments
|
||||
poetry
|
||||
(buildPythonPackage rec {
|
||||
pname = "graphql-core";
|
||||
version = "3.2.0";
|
||||
format = "setuptools";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-huKgvgCL/eGe94OI3opyWh2UKpGQykMcJKYIN5c4A84=";
|
||||
};
|
||||
checkInputs = [
|
||||
pytest-asyncio
|
||||
pytest-benchmark
|
||||
pytestCheckHook
|
||||
];
|
||||
pythonImportsCheck = [
|
||||
"graphql"
|
||||
];
|
||||
})
|
||||
# (buildPythonPackage rec {
|
||||
# pname = "graphql-core";
|
||||
# version = "3.2.0";
|
||||
# format = "setuptools";
|
||||
# src = fetchPypi {
|
||||
# inherit pname version;
|
||||
# sha256 = "sha256-huKgvgCL/eGe94OI3opyWh2UKpGQykMcJKYIN5c4A84=";
|
||||
# };
|
||||
# checkInputs = [
|
||||
# pytest-asyncio
|
||||
# pytest-benchmark
|
||||
# pytestCheckHook
|
||||
# ];
|
||||
# pythonImportsCheck = [
|
||||
# "graphql"
|
||||
# ];
|
||||
# })
|
||||
];
|
||||
src = python-super.fetchPypi {
|
||||
inherit pname version;
|
||||
|
|
Loading…
Reference in a new issue