depot/third_party/nixpkgs/pkgs/development/python-modules/ldaptor/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

49 lines
1,002 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
twisted,
passlib,
pyparsing,
six,
zope-interface,
pythonOlder,
}:
buildPythonPackage rec {
pname = "ldaptor";
version = "21.2.0";
format = "setuptools";
disabled = pythonOlder "3.6";
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 = with lib; {
description = "Pure-Python Twisted library for LDAP";
homepage = "https://github.com/twisted/ldaptor";
license = licenses.mit;
maintainers = [ ];
};
}