ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / ldap3 / default.nix
blobcf82b166ec6df24621d9f97f258e686503f320dc
1 { lib, fetchPypi, buildPythonPackage, pyasn1 }:
3 buildPythonPackage rec {
4   pname = "ldap3";
5   version = "2.9.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "f3e7fc4718e3f09dda568b57100095e0ce58633bcabbed8667ce3f8fbaa4229f";
10   };
12   propagatedBuildInputs = [ pyasn1 ];
14   doCheck = false; # requires network
16   meta = with lib; {
17     homepage = "https://pypi.python.org/pypi/ldap3";
18     description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library";
19     license = licenses.lgpl3;
20   };