python3Packages.setproctitle: avoid rebuild on linux for now

This commit is contained in:
Vladimír Čunát
2025-10-15 11:38:20 +02:00
parent 9d8f8d668c
commit 72a533422c
@@ -28,7 +28,7 @@ buildPythonPackage rec {
];
# Setting the process title fails on macOS in the Nix builder environment (regardless of sandboxing)
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ "test_setproctitle_darwin" ];
disabledTests = if stdenv.hostPlatform.isDarwin then [ "test_setproctitle_darwin" ] else null;
pythonImportsCheck = [ "setproctitle" ];