From 2603a3abe4bc7c4ff5001ab83dadacb6e9a194cb Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 2 Feb 2026 16:57:51 +0000 Subject: [PATCH] python3Packages.mmcv: skip crashing test on x86_64-darwin --- pkgs/development/python-modules/mmcv/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/mmcv/default.nix b/pkgs/development/python-modules/mmcv/default.nix index 83fa155edc87..2f1984589ca5 100644 --- a/pkgs/development/python-modules/mmcv/default.nix +++ b/pkgs/development/python-modules/mmcv/default.nix @@ -140,6 +140,10 @@ buildPythonPackage (finalAttrs: { "test_ycbcr2rgb" "test_ycbcr2bgr" "test_tensor2imgs" + ] + ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ + # Fatal Python error: Segmentation fault + "test_transform" ]; meta = {