diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5e1d9155b821..20b26c0ac16e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -869,6 +869,13 @@ let pythonPackages = python.modules // rec { sha256 = "0qm6q232h5r071gwfkiszkmfqc60k7abl15bk495lcdkk62m91db"; }; + # Fails with ‘This platform lacks a functioning sem_open + # implementation, therefore, the required synchronization + # primitives needed will not function, see issue 3770.’ However, + # our Python does seem to be built with the necessary + # functionality. + doCheck = false; + meta = { description = "A unittest-based testing framework for python that makes writing and running tests easier"; };