about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-ldap-test/default.nix
blob: e88a49f4cc35f187f18d77ffbc9f9d930daba1d1 (plain) (blame)
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
{ 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 = with lib; {
    description = "Tool for testing code speaking with LDAP server";
    homepage = "https://github.com/zoldar/python-ldap-test";
    sourceProvenance = with sourceTypes; [
      fromSource
      binaryBytecode
    ];
    license = licenses.mit;
    maintainers = with maintainers; [ psyanticy ];
  };
}