pythonPackages.ldaptor: fix build

This commit is contained in:
Maxim Krivchikov 2020-02-22 22:05:18 +00:00
parent 2fea715779
commit 50f3704c2f

View file

@ -2,9 +2,11 @@
, buildPythonPackage
, fetchPypi
, twisted
, passlib
, pycrypto
, pyopenssl
, pyparsing
, service-identity
, zope_interface
, isPy3k
}:
@ -19,7 +21,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
twisted pycrypto pyopenssl pyparsing zope_interface
twisted passlib pycrypto pyopenssl pyparsing service-identity zope_interface
];
disabled = isPy3k;
@ -32,4 +34,4 @@ buildPythonPackage rec {
homepage = https://github.com/twisted/ldaptor;
license = lib.licenses.mit;
};
}
}