1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 04:48:10 +00:00
nixpkgs/pkgs/development/python-modules/ldap3/default.nix

24 lines
568 B
Nix
Raw Normal View History

2017-11-02 23:36:38 +00:00
{ stdenv, fetchPypi, buildPythonPackage, gssapi, pyasn1 }:
buildPythonPackage rec {
2017-12-30 11:24:13 +00:00
version = "2.4";
2017-11-02 23:36:38 +00:00
pname = "ldap3";
src = fetchPypi {
inherit pname version;
2017-12-30 11:24:13 +00:00
sha256 = "888015f849eb33852583bbaf382f61593b03491cdac6098fd5d4d0252e0e7e66";
2017-11-02 23:36:38 +00:00
};
buildInputs = [ gssapi ];
propagatedBuildInputs = [ pyasn1 ];
doCheck = false; # requires network
meta = with stdenv.lib; {
homepage = https://pypi.python.org/pypi/ldap3;
description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library";
license = licenses.lgpl3;
};
}