41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ buildPythonPackage, fetchPypi
|
|
, pyasn1, pyasn1-modules
|
|
, pythonAtLeast, pytestCheckHook
|
|
, openldap, cyrus_sasl, lib, stdenv }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-ldap";
|
|
version = "3.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "60464c8fc25e71e0fd40449a24eae482dcd0fb7fcf823e7de627a6525b3e0d12";
|
|
};
|
|
|
|
propagatedBuildInputs = [ pyasn1 pyasn1-modules ];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
buildInputs = [ openldap cyrus_sasl ];
|
|
|
|
preCheck = ''
|
|
# Needed by tests to setup a mockup ldap server.
|
|
export BIN="${openldap}/bin"
|
|
export SBIN="${openldap}/bin"
|
|
export SLAPD="${openldap}/libexec/slapd"
|
|
export SCHEMA="${openldap}/etc/schema"
|
|
'';
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.9") [
|
|
# See https://github.com/python-ldap/python-ldap/issues/407
|
|
"test_simple_bind_noarg"
|
|
];
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
meta = with lib; {
|
|
description = "Python modules for implementing LDAP clients";
|
|
homepage = "https://www.python-ldap.org/";
|
|
license = licenses.psfl;
|
|
};
|
|
}
|