mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nix-repo.git
synced 2024-11-23 20:41:28 +00:00
44 lines
1 KiB
Nix
44 lines
1 KiB
Nix
{ pkgs, pythonPkgs, lib }:
|
|
|
|
let
|
|
inherit pkgs;
|
|
|
|
selfprivacy-graphql-api =
|
|
pythonPkgs.buildPythonApplication rec {
|
|
pname = "selfprivacy-graphql-api";
|
|
version = "2.0.0";
|
|
src = builtins.fetchGit {
|
|
url = "https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git";
|
|
rev = "43675b2d1d1e8b9ff3a66b47afbb73ff3de63425";
|
|
ref = "fastapi";
|
|
};
|
|
propagatedBuildInputs = with pythonPkgs; [
|
|
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
|
|
if lib.inNixShell then drv.env else drv
|