2018-07-21 02:44:44 +02:00
|
|
|
{ buildPythonPackage, fetchPypi
|
2018-04-06 21:39:52 +02:00
|
|
|
, pyasn1, pyasn1-modules, pytest
|
2018-08-17 04:10:19 +02:00
|
|
|
, openldap, cyrus_sasl, stdenv }:
|
2017-01-13 16:21:37 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "python-ldap";
|
2019-04-02 20:37:15 +02:00
|
|
|
version = "3.2.0";
|
2017-01-13 16:21:37 +01:00
|
|
|
|
2017-05-29 03:05:56 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-02 20:37:15 +02:00
|
|
|
sha256 = "13nvrhp85yr0jyxixcjj012iw8l9wynxxlykm9j3alss6waln73x";
|
2017-01-13 16:21:37 +01:00
|
|
|
};
|
|
|
|
|
2018-04-06 21:39:52 +02:00
|
|
|
propagatedBuildInputs = [ pyasn1 pyasn1-modules ];
|
|
|
|
|
|
|
|
buildInputs = [ openldap cyrus_sasl ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest ];
|
2017-08-29 10:14:53 +02:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
# Needed by tests to setup a mockup ldap server.
|
2017-06-01 01:30:29 +02:00
|
|
|
export BIN="${openldap}/bin"
|
|
|
|
export SBIN="${openldap}/bin"
|
|
|
|
export SLAPD="${openldap}/libexec/slapd"
|
|
|
|
export SCHEMA="${openldap}/etc/schema"
|
2017-08-29 10:14:53 +02:00
|
|
|
|
2018-04-06 21:39:52 +02:00
|
|
|
py.test
|
2017-06-01 01:30:29 +02:00
|
|
|
'';
|
2018-08-17 04:10:19 +02:00
|
|
|
|
|
|
|
doCheck = !stdenv.isDarwin;
|
2019-04-05 19:16:24 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python modules for implementing LDAP clients";
|
|
|
|
homepage = https://www.python-ldap.org/;
|
|
|
|
license = licenses.psfl;
|
|
|
|
};
|
2017-01-13 16:21:37 +01:00
|
|
|
}
|