diff options
Diffstat (limited to 'pkgs/development/python-modules/python-ldap/default.nix')
-rw-r--r-- | pkgs/development/python-modules/python-ldap/default.nix | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/python-ldap/default.nix b/pkgs/development/python-modules/python-ldap/default.nix index 4f1c9bd9636e..97e8967e8fd6 100644 --- a/pkgs/development/python-modules/python-ldap/default.nix +++ b/pkgs/development/python-modules/python-ldap/default.nix @@ -13,12 +13,12 @@ openldap, cyrus_sasl, - # dependencies pyasn1, pyasn1-modules, # tests pytestCheckHook, + jaraco-functools, }: buildPythonPackage rec { @@ -50,7 +50,10 @@ buildPythonPackage rec { pyasn1-modules ]; - nativeCheckInputs = [ pytestCheckHook ]; + nativeCheckInputs = [ + jaraco-functools + pytestCheckHook + ]; preCheck = '' # Needed by tests to setup a mockup ldap server. @@ -65,13 +68,14 @@ buildPythonPackage rec { "test_tls_ext_noca" ]; - doCheck = !stdenv.isDarwin; + doCheck = !stdenv.hostPlatform.isDarwin; meta = with lib; { - changelog = "https://github.com/python-ldap/python-ldap/releases/tag/python-ldap-${version}"; description = "Python modules for implementing LDAP clients"; downloadPage = "https://github.com/python-ldap/python-ldap"; homepage = "https://www.python-ldap.org/"; + changelog = "https://github.com/python-ldap/python-ldap/releases/tag/python-ldap-${version}"; license = licenses.psfl; + maintainers = [ ]; }; } |