mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-04 18:53:10 +00:00
7935de0fe1
Co-authored-by: inexcode <inex.code@selfprivacy.org> Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api/pulls/13
65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{ lib, python39Packages }:
|
|
with python39Packages;
|
|
buildPythonApplication {
|
|
pname = "selfprivacy-api";
|
|
version = "2.0.0";
|
|
|
|
propagatedBuildInputs = [
|
|
setuptools
|
|
portalocker
|
|
pytz
|
|
pytest
|
|
pytest-mock
|
|
pytest-datadir
|
|
huey
|
|
gevent
|
|
mnemonic
|
|
pydantic
|
|
typing-extensions
|
|
psutil
|
|
fastapi
|
|
uvicorn
|
|
(buildPythonPackage rec {
|
|
pname = "strawberry-graphql";
|
|
version = "0.123.0";
|
|
format = "pyproject";
|
|
patches = [
|
|
./strawberry-graphql.patch
|
|
];
|
|
propagatedBuildInputs = [
|
|
typing-extensions
|
|
python-multipart
|
|
python-dateutil
|
|
# flask
|
|
pydantic
|
|
pygments
|
|
poetry
|
|
# flask-cors
|
|
(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 = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "KsmZ5Xv8tUg6yBxieAEtvoKoRG60VS+iVGV0X6oCExo=";
|
|
};
|
|
})
|
|
];
|
|
|
|
src = ./.;
|
|
}
|