1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
49 lines
951 B
Nix
49 lines
951 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
twisted,
|
|
passlib,
|
|
pyparsing,
|
|
six,
|
|
zope-interface,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ldaptor";
|
|
version = "21.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-jEnrGTddSqs+W4NYYGFODLF+VrtaIOGHSAj6W+xno1g=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
passlib
|
|
pyparsing
|
|
six
|
|
twisted
|
|
zope-interface
|
|
]
|
|
++ twisted.optional-dependencies.tls;
|
|
|
|
nativeCheckInputs = [ twisted ];
|
|
|
|
# Test creates an excessive amount of temporary files (order of millions).
|
|
# Cleaning up those files already took over 15 hours already on my zfs
|
|
# filesystem and is not finished yet.
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
trial -j$NIX_BUILD_CORES ldaptor
|
|
'';
|
|
|
|
meta = {
|
|
description = "Pure-Python Twisted library for LDAP";
|
|
homepage = "https://github.com/twisted/ldaptor";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|