pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / python-ldap-test / default.nix
blob5b2f69f4e5e935f09dc2c87d64b8f4f806d9285e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   py4j,
6 }:
8 buildPythonPackage rec {
9   pname = "python-ldap-test";
10   version = "0.3.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1qh9x3lncaldnw79fgpqbayichs8pbz8abr6pxb5qxbs7zrnyrwf";
16   };
18   propagatedBuildInputs = [ py4j ];
20   # Tests needs java to be present in path
21   doCheck = false;
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   };