47 lines
882 B
Nix
47 lines
882 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cryptography,
|
|
fetchPypi,
|
|
gssapi,
|
|
pyasn1,
|
|
pycryptodomex,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ldap3-bleeding-edge";
|
|
version = "2.10.1.1338";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "ldap3_bleeding_edge";
|
|
inherit version;
|
|
hash = "sha256-7j5W1C0scvjm6j3eueNomdTRd+Uzishhr2U1bb1gB3s=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
cryptography
|
|
pyasn1
|
|
pycryptodomex
|
|
];
|
|
|
|
optional-dependencies = {
|
|
kerberos = [ gssapi ];
|
|
};
|
|
|
|
pythonImportsCheck = [ "ldap3" ];
|
|
|
|
# Tests require network access
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Strictly RFC 4510 conforming LDAP V3 client library (bleeding edge)";
|
|
homepage = "https://pypi.org/project/ldap3-bleeding-edge/";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|