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

22 lines
521 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, pyasn1 }:
2017-11-03 00:36:38 +01:00
buildPythonPackage rec {
pname = "ldap3";
2020-05-09 17:57:36 +02:00
version = "2.7";
2017-11-03 00:36:38 +01:00
2019-04-11 10:45:33 +02:00
src = fetchPypi {
inherit pname version;
2020-05-09 17:57:36 +02:00
sha256 = "1h1q8g1c2nkhx8p5n91bzkvjx5js5didi9xqbnmfrxqbnyc45w0p";
2017-11-03 00:36:38 +01:00
};
propagatedBuildInputs = [ pyasn1 ];
doCheck = false; # requires network
meta = with stdenv.lib; {
homepage = "https://pypi.python.org/pypi/ldap3";
2017-11-03 00:36:38 +01:00
description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library";
license = licenses.lgpl3;
};
}