mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
49 lines
1.5 KiB
Nix
49 lines
1.5 KiB
Nix
{ lib, writeText, buildPythonPackage, isPy3k, fetchPypi
|
|
, openldap, cyrus_sasl, openssl, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-ldap";
|
|
version = "2.4.45";
|
|
name = "${pname}-${version}";
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "824fde180a53772e23edc031c4dd64ac1af4a3eade78f00d9d510937d562f64e";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
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"
|
|
|
|
# AssertionError: expected errno=107, got 57 -> nix sandbox related ?
|
|
py.test -k 'not TestLdapCExtension and \
|
|
not Test01_SimpleLDAPObject and \
|
|
not Test02_ReconnectLDAPObject' Tests/*.py
|
|
'';
|
|
|
|
patches = lib.singleton (writeText "avoid-syslog.diff" ''
|
|
diff a/Lib/slapdtest.py b/Lib/slapdtest.py
|
|
--- a/Lib/slapdtest.py
|
|
+++ b/Lib/slapdtest.py
|
|
@@ -60,7 +60,8 @@ def combined_logger(
|
|
pass
|
|
# for writing to syslog
|
|
new_logger = logging.getLogger(log_name)
|
|
- if sys_log_format:
|
|
+ # /dev/log does not exist in nix build environment.
|
|
+ if False:
|
|
my_syslog_formatter = logging.Formatter(
|
|
fmt=' '.join((log_name, sys_log_format)))
|
|
my_syslog_handler = logging.handlers.SysLogHandler(
|
|
'');
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${cyrus_sasl.dev}/include/sasl";
|
|
propagatedBuildInputs = [openldap cyrus_sasl openssl];
|
|
}
|