Merge pull request #80834 from maxxk/ldaptor-fix-build

pythonPackages.ldaptor: fix build
This commit is contained in:
worldofpeace 2020-02-22 18:06:35 -05:00 committed by GitHub
commit d5220977a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
};
}
}