etebase: use dependencies from overriden python...

interpreter, as per review comment.
This commit is contained in:
phaer
2024-03-01 22:54:41 +01:00
parent 720a1eb5e7
commit aa04a4d124
+8 -9
View File
@@ -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;