From 96a514a232c866ffc044c88214390ee30bd6804b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 11 May 2022 14:51:37 +0200 Subject: [PATCH] python3.pkgs.ldaptor: disable checks, remove broken --- pkgs/development/python-modules/ldaptor/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ldaptor/default.nix b/pkgs/development/python-modules/ldaptor/default.nix index 1f6975ff255..55725fb49c9 100644 --- a/pkgs/development/python-modules/ldaptor/default.nix +++ b/pkgs/development/python-modules/ldaptor/default.nix @@ -33,6 +33,11 @@ buildPythonPackage rec { 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 ''; @@ -42,7 +47,5 @@ buildPythonPackage rec { homepage = "https://github.com/twisted/ldaptor"; license = licenses.mit; maintainers = with maintainers; [ SuperSandro2000 ]; - # tests hang or fail with "no space left on device" - broken = true; }; }