Unverified Commit 72a53342 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

python3Packages.setproctitle: avoid rebuild on linux for now

parent 9d8f8d66
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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" ];