nixpkgs/pkgs/development/python-modules/python-ldap/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

61 lines
1.1 KiB
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pyasn1
, pyasn1-modules
, pythonAtLeast
, pythonOlder
, pytestCheckHook
, openldap
, cyrus_sasl
}:
buildPythonPackage rec {
pname = "python-ldap";
version = "3.4.3";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/python-ldap-${version}";
hash = "sha256-/ehvSs2qjuTPhaaOP0agPbWyyRugBpUlPq/Ny9t2C58=";
};
buildInputs = [
openldap
cyrus_sasl
];
propagatedBuildInputs = [
pyasn1
pyasn1-modules
];
nativeCheckInputs = [
pytestCheckHook
];
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 = [
# https://github.com/python-ldap/python-ldap/issues/501
"test_tls_ext_noca"
];
doCheck = !stdenv.isDarwin;
meta = with lib; {
description = "Python modules for implementing LDAP clients";
homepage = "https://www.python-ldap.org/";
license = licenses.psfl;
};
}