blob: 82c343070f318b2905a81624cba569386aab59be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
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 ];
};
}
|