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