My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ldaptor/default.nix

51 lines
1.0 KiB

{ lib
, buildPythonPackage
, fetchPypi
, twisted
, passlib
, pyparsing
, service-identity
, six
, zope_interface
, pythonOlder
, python
}:
buildPythonPackage rec {
pname = "ldaptor";
version = "21.2.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-jEnrGTddSqs+W4NYYGFODLF+VrtaIOGHSAj6W+xno1g=";
};
propagatedBuildInputs = [
passlib
pyparsing
six
twisted
zope_interface
] ++ twisted.optional-dependencies.tls;
checkInputs = [
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 = "A Pure-Python Twisted library for LDAP";
homepage = "https://github.com/twisted/ldaptor";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}