mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-05 11:03:12 +00:00
30 lines
585 B
Nix
30 lines
585 B
Nix
|
{ pythonPackages, rev ? "local" }:
|
||
|
|
||
|
pythonPackages.buildPythonPackage rec {
|
||
|
pname = "selfprivacy-graphql-api";
|
||
|
version = rev;
|
||
|
src = builtins.filterSource (p: t: p != ".git" && t != "symlink") ./.;
|
||
|
propagatedBuildInputs = with pythonPackages; [
|
||
|
fastapi
|
||
|
gevent
|
||
|
huey
|
||
|
mnemonic
|
||
|
portalocker
|
||
|
psutil
|
||
|
pydantic
|
||
|
pytz
|
||
|
redis
|
||
|
setuptools
|
||
|
strawberry-graphql
|
||
|
typing-extensions
|
||
|
uvicorn
|
||
|
];
|
||
|
pythonImportsCheck = [ "selfprivacy_api" ];
|
||
|
doCheck = false;
|
||
|
meta = {
|
||
|
description = ''
|
||
|
SelfPrivacy Server Management API
|
||
|
'';
|
||
|
};
|
||
|
}
|