mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 07:17:29 +00:00
Merge pull request #172566 from Mic92/ldaptor
python3.pkgs.ldaptor: disable checks, remove broken
This commit is contained in:
commit
2b6405afa8
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user