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

22 lines
523 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, pyasn1 }:
2017-11-02 16:36:38 -07:00
buildPythonPackage rec {
pname = "ldap3";
2021-03-24 02:28:17 -07:00
version = "2.9";
2017-11-02 16:36:38 -07:00
2019-04-11 01:45:33 -07:00
src = fetchPypi {
inherit pname version;
2021-03-24 02:28:17 -07:00
sha256 = "18c3ee656a6775b9b0d60f7c6c5b094d878d1d90fc03d56731039f0a4b546a91";
2017-11-02 16:36:38 -07:00
};
propagatedBuildInputs = [ pyasn1 ];
doCheck = false; # requires network
meta = with lib; {
homepage = "https://pypi.python.org/pypi/ldap3";
2017-11-02 16:36:38 -07:00
description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library";
license = licenses.lgpl3;
};
}