nixpkgs/pkgs/development/python-modules/ldap3/default.nix

22 lines
519 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, pyasn1 }:
2017-11-02 23:36:38 +00:00
buildPythonPackage rec {
pname = "ldap3";
2019-04-11 09:45:33 +01:00
version = "2.6";
2017-11-02 23:36:38 +00:00
2019-04-11 09:45:33 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "1f0v82584b7gkzrnnnl4fc88w4i73x7cxqbzy0r0bknm33yfwcq5";
2017-11-02 23:36:38 +00:00
};
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;
};
}