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

32 lines
709 B
Nix
Raw Normal View History

{ buildPythonPackage, fetchPypi
2018-04-06 19:39:52 +00:00
, pyasn1, pyasn1-modules, pytest
, openldap, cyrus_sasl, stdenv }:
2017-01-13 15:21:37 +00:00
buildPythonPackage rec {
pname = "python-ldap";
2018-06-12 16:47:02 +00:00
version = "3.1.0";
2017-01-13 15:21:37 +00:00
src = fetchPypi {
inherit pname version;
2018-06-12 16:47:02 +00:00
sha256 = "41975e79406502c092732c57ef0c2c2eb318d91e8e765f81f5d4ab6c1db727c5";
2017-01-13 15:21:37 +00:00
};
2018-04-06 19:39:52 +00:00
propagatedBuildInputs = [ pyasn1 pyasn1-modules ];
buildInputs = [ openldap cyrus_sasl ];
checkInputs = [ pytest ];
2017-08-29 08:14:53 +00: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 08:14:53 +00:00
2018-04-06 19:39:52 +00:00
py.test
'';
doCheck = !stdenv.isDarwin;
2017-01-13 15:21:37 +00:00
}