diff options
Diffstat (limited to 'pkgs/development/python-modules/ldaptor/default.nix')
-rw-r--r-- | pkgs/development/python-modules/ldaptor/default.nix | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/ldaptor/default.nix b/pkgs/development/python-modules/ldaptor/default.nix index 0095995ed6c1..ead49289a35f 100644 --- a/pkgs/development/python-modules/ldaptor/default.nix +++ b/pkgs/development/python-modules/ldaptor/default.nix @@ -1,14 +1,13 @@ -{ lib -, buildPythonPackage -, fetchPypi -, twisted -, passlib -, pyparsing -, service-identity -, six -, zope-interface -, pythonOlder -, python +{ + lib, + buildPythonPackage, + fetchPypi, + twisted, + passlib, + pyparsing, + six, + zope-interface, + pythonOlder, }: buildPythonPackage rec { @@ -30,9 +29,7 @@ buildPythonPackage rec { zope-interface ] ++ twisted.optional-dependencies.tls; - nativeCheckInputs = [ - twisted - ]; + 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 @@ -44,9 +41,9 @@ buildPythonPackage rec { ''; meta = with lib; { - description = "A Pure-Python Twisted library for LDAP"; + description = "Pure-Python Twisted library for LDAP"; homepage = "https://github.com/twisted/ldaptor"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |