From aa04a4d12449f8e49afdc271b8fb7acdca8b1ad0 Mon Sep 17 00:00:00 2001 From: phaer Date: Fri, 1 Mar 2024 22:54:41 +0100 Subject: [PATCH] etebase: use dependencies from overriden python... interpreter, as per review comment. --- pkgs/servers/etebase/default.nix | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pkgs/servers/etebase/default.nix b/pkgs/servers/etebase/default.nix index 594f2b16c9e7..6d4e41d25321 100644 --- a/pkgs/servers/etebase/default.nix +++ b/pkgs/servers/etebase/default.nix @@ -1,17 +1,8 @@ { lib , fetchFromGitHub -, aiofiles -, django_3 -, fastapi -, msgpack -, pynacl -, redis -, typing-extensions , withLdap ? true , python3 -, python-ldap , withPostgres ? true -, psycopg2 , nix-update-script , nixosTests }: @@ -38,12 +29,20 @@ python.pkgs.buildPythonPackage rec { patches = [ ./secret.patch ]; propagatedBuildInputs = [ + propagatedBuildInputs = with python.pkgs; [ aiofiles django_3 fastapi msgpack pynacl redis + uvicorn + websockets + watchfiles + uvloop + pyyaml + python-dotenv + httptools typing-extensions ] ++ lib.optional withLdap python-ldap ++ lib.optional withPostgres psycopg2;