summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-ldap-test/default.nix
blob: 94d8abd1fabd8aa77e1471e0c5d5368db08062c5 (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
{ lib, stdenv, buildPythonPackage, fetchPypi, py4j }:

buildPythonPackage rec {
  pname = "python-ldap-test";
  version = "0.3.1";

  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";
    license = licenses.mit;
    maintainers = with maintainers; [ psyanticy ];
  };
}