python312Packages.boost-histogram: skip crashing test on aarch64-darwin

This commit is contained in:
Gaetan Lepage
2024-12-01 18:44:17 +01:00
parent 65b24f1105
commit d44c2904dc
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
@@ -57,6 +58,12 @@ buildPythonPackage rec {
pytest-benchmark
];
disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
# Segfaults: boost_histogram/_internal/hist.py", line 799 in sum
# Fatal Python error: Segmentation fault
"test_numpy_conversion_4"
];
meta = {
description = "Python bindings for the C++14 Boost::Histogram library";
homepage = "https://github.com/scikit-hep/boost-histogram";