2022-08-25 18:27:14 +00:00
|
|
|
{ nixpkgs ? import <nixpkgs> { }, pythonPkgs ? nixpkgs.pkgs.python39Packages }:
|
|
|
|
|
|
|
|
let
|
|
|
|
inherit (nixpkgs) pkgs;
|
|
|
|
inherit pythonPkgs;
|
|
|
|
|
|
|
|
selfprivacy-graphql-api =
|
|
|
|
{ buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, setuptools
|
|
|
|
, portalocker
|
|
|
|
, pytz
|
|
|
|
, pytest
|
|
|
|
, pytest-mock
|
|
|
|
, pytest-datadir
|
|
|
|
, huey
|
|
|
|
, gevent
|
|
|
|
, mnemonic
|
|
|
|
, pydantic
|
|
|
|
, typing-extensions
|
|
|
|
, strawberry_graphql
|
|
|
|
, psutil
|
|
|
|
, fastapi
|
|
|
|
, uvicorn
|
|
|
|
}:
|
|
|
|
pythonPkgs.buildPythonApplication rec {
|
|
|
|
pname = "selfprivacy-graphql-api";
|
2022-09-09 14:48:16 +00:00
|
|
|
version = "2.0.1";
|
2022-08-25 18:27:14 +00:00
|
|
|
src = builtins.fetchGit {
|
|
|
|
url = "https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git";
|
2022-09-09 14:48:16 +00:00
|
|
|
rev = "97acae189f1dec2255c7edca7e91490c83e1ceb7";
|
2022-08-25 18:27:14 +00:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
portalocker
|
|
|
|
pytz
|
|
|
|
pytest
|
|
|
|
pytest-mock
|
|
|
|
pytest-datadir
|
|
|
|
huey
|
|
|
|
gevent
|
|
|
|
mnemonic
|
|
|
|
pydantic
|
|
|
|
typing-extensions
|
|
|
|
strawberry_graphql
|
|
|
|
psutil
|
|
|
|
fastapi
|
|
|
|
uvicorn
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
description = ''
|
|
|
|
SelfPrivacy Server Management API
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
passthru = {
|
|
|
|
pythonPath = pythonPkgs.makePythonPath propagatedBuildInputs;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
drv = pythonPkgs.callPackage selfprivacy-graphql-api { };
|
|
|
|
in
|
|
|
|
drv
|