selfprivacy-nix-repo/pkgs/selfprivacy-graphql-api/default.nix

44 lines
1 KiB
Nix
Raw Normal View History

2022-08-12 15:28:11 +00:00
{ pkgs, pythonPkgs, lib }:
2022-08-12 12:12:02 +00:00
let
2022-08-12 15:22:00 +00:00
inherit pkgs;
2022-08-12 12:12:02 +00:00
selfprivacy-graphql-api =
2022-08-12 13:48:24 +00:00
pythonPkgs.buildPythonApplication rec {
2022-08-12 12:12:02 +00:00
pname = "selfprivacy-graphql-api";
version = "2.0.0";
src = builtins.fetchGit {
url = "https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git";
2022-08-12 13:43:34 +00:00
rev = "43675b2d1d1e8b9ff3a66b47afbb73ff3de63425";
2022-08-12 13:51:36 +00:00
ref = "fastapi";
2022-08-12 12:12:02 +00:00
};
2022-08-12 17:21:25 +00:00
propagatedBuildInputs = with pythonPkgs; [
2022-08-12 12:12:02 +00:00
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
'';
};
2022-08-12 13:43:34 +00:00
passthru = {
2022-08-12 13:49:40 +00:00
pythonPath = pythonPkgs.makePythonPath propagatedBuildInputs;
2022-08-12 13:43:34 +00:00
};
2022-08-12 12:12:02 +00:00
};
drv = pythonPkgs.callPackage selfprivacy-graphql-api { };
in
2022-08-12 15:28:11 +00:00
if lib.inNixShell then drv.env else drv