From a4e888b221bf2c8ba1e6784c5ab45ce4e6afaccb Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 14 Aug 2026 22:34:52 +0000 Subject: [PATCH] python3Packages.hist: skip crashing test on darwin --- pkgs/development/python-modules/hist/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/hist/default.nix b/pkgs/development/python-modules/hist/default.nix index 414c4e6918c7..91e7f0278943 100644 --- a/pkgs/development/python-modules/hist/default.nix +++ b/pkgs/development/python-modules/hist/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, buildPythonPackage, fetchFromGitHub, @@ -46,6 +47,11 @@ buildPythonPackage (finalAttrs: { pytest-mpl ]; + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + # line 23: 92372 Trace/BPT trap: 5 + "test_to_hist_empty" + ]; + pythonImportsCheck = [ "hist" ]; meta = {