etebase-server: Fixup after ldap -> python-ldap rename

This commit is contained in:
OPNA2608 2022-10-07 18:56:45 +02:00
parent bebe9f1270
commit 05d057ca32

View File

@ -1,6 +1,6 @@
{ lib, fetchFromGitHub, buildPythonPackage, aioredis, aiofiles, django_3
, fastapi, msgpack, pynacl, typing-extensions
, withLdap ? true, ldap }:
, withLdap ? true, python-ldap }:
buildPythonPackage rec {
pname = "etebase-server";
@ -24,7 +24,7 @@ buildPythonPackage rec {
msgpack
pynacl
typing-extensions
] ++ lib.optional withLdap ldap;
] ++ lib.optional withLdap python-ldap;
installPhase = ''
mkdir -p $out/bin $out/lib