pythonPackages.ldap: 2.4.19 -> 2.4.22

This commit is contained in:
Jörg Thalheim
2017-01-13 16:21:37 +01:00
parent 1f6ca0f37b
commit 14a65c5ecd
2 changed files with 17 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
{ buildPythonPackage, isPy3k, fetchurl
, openldap, cyrus_sasl, openssl }:
buildPythonPackage rec {
name = "ldap-2.4.22";
disabled = isPy3k;
src = fetchurl {
url = "mirror://pypi/p/python-ldap/python-${name}.tar.gz";
sha256 = "1dshpq84kl4xpa0hmnjrh6q5h5bybn09r83sa3z3ybr9jlm8gxcy";
};
NIX_CFLAGS_COMPILE = "-I${cyrus_sasl.dev}/include/sasl";
propagatedBuildInputs = [openldap cyrus_sasl openssl];
}