nixpkgs/pkgs/development/python-modules/ldap/default.nix

38 lines
873 B
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi
2018-04-06 20:39:52 +01:00
, pyasn1, pyasn1-modules, pytest
, openldap, cyrus_sasl, stdenv }:
2017-01-13 15:21:37 +00:00
buildPythonPackage rec {
pname = "python-ldap";
2020-07-06 18:31:21 +01:00
version = "3.3.1";
2017-01-13 15:21:37 +00:00
src = fetchPypi {
inherit pname version;
2020-07-06 18:31:21 +01:00
sha256 = "198as30xy6p760niqps2zdvq2xcmr765h06pmda8fa9y077wl4a7";
2017-01-13 15:21:37 +00:00
};
2018-04-06 20:39:52 +01:00
propagatedBuildInputs = [ pyasn1 pyasn1-modules ];
buildInputs = [ openldap cyrus_sasl ];
checkInputs = [ pytest ];
2017-08-29 09:14:53 +01:00
checkPhase = ''
# 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"
2017-08-29 09:14:53 +01:00
2018-04-06 20:39:52 +01:00
py.test
'';
doCheck = !stdenv.isDarwin;
2019-04-05 18:16:24 +01:00
meta = with stdenv.lib; {
description = "Python modules for implementing LDAP clients";
homepage = "https://www.python-ldap.org/";
2019-04-05 18:16:24 +01:00
license = licenses.psfl;
};
2017-01-13 15:21:37 +00:00
}