package: buildPythonApplication => buildPythonPackage

This commit is contained in:
Alexander Tomokhov 2023-11-23 02:42:38 +04:00
parent 2bbc2be6b5
commit d020820d26
1 changed files with 4 additions and 1 deletions

View File

@ -1,9 +1,10 @@
{ pythonPackages, rev ? "local" }:
pythonPackages.buildPythonApplication rec {
pythonPackages.buildPythonPackage rec {
pname = "selfprivacy-graphql-api";
version = rev;
src = builtins.filterSource (p: t: p != ".git" && t != "symlink") ./.;
nativeCheckInputs = [ pythonPackages.pytestCheckHook ];
propagatedBuildInputs = with pythonPackages; [
fastapi
gevent
@ -22,6 +23,8 @@ pythonPackages.buildPythonApplication rec {
typing-extensions
uvicorn
];
pythonImportsCheck = [ "selfprivacy_api" ];
doCheck = true;
meta = {
description = ''
SelfPrivacy Server Management API