1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 py4j,
6}:
7
8buildPythonPackage rec {
9 pname = "python-ldap-test";
10 version = "0.3.1";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "1qh9x3lncaldnw79fgpqbayichs8pbz8abr6pxb5qxbs7zrnyrwf";
16 };
17
18 propagatedBuildInputs = [ py4j ];
19
20 # Tests needs java to be present in path
21 doCheck = false;
22
23 meta = with lib; {
24 description = "Tool for testing code speaking with LDAP server";
25 homepage = "https://github.com/zoldar/python-ldap-test";
26 sourceProvenance = with sourceTypes; [
27 fromSource
28 binaryBytecode
29 ];
30 license = licenses.mit;
31 maintainers = with maintainers; [ psyanticy ];
32 };
33}