blob: 176b2f7978c9a5ace8679932a62d248f5ab795fd (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
py4j,
}:
buildPythonPackage rec {
pname = "python-ldap-test";
version = "0.3.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1qh9x3lncaldnw79fgpqbayichs8pbz8abr6pxb5qxbs7zrnyrwf";
};
propagatedBuildInputs = [ py4j ];
# Tests needs java to be present in path
doCheck = false;
meta = {
description = "Tool for testing code speaking with LDAP server";
homepage = "https://github.com/zoldar/python-ldap-test";
sourceProvenance = with lib.sourceTypes; [
fromSource
binaryBytecode
];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ psyanticy ];
};
}
|