python312Packages.boost-histogram: skip failing test on aarch64-darwin (#360813)

This commit is contained in:
Someone
2024-12-02 15:42:52 +00:00
committed by GitHub
@@ -1,18 +1,28 @@
{
lib,
fetchPypi,
stdenv,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
# nativeBuildInputs
cmake,
# build-system
pybind11,
nanobind,
ninja,
scikit-build-core,
setuptools-scm,
# buildInputs
boost,
# dependencies
numpy,
# tests
pytestCheckHook,
pytest-benchmark,
scikit-build-core,
}:
buildPythonPackage rec {
@@ -20,12 +30,11 @@ buildPythonPackage rec {
version = "1.5.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "boost_histogram";
inherit version;
hash = "sha256-BiPwEObFLl0Bh2dyOVloYJDbB/ww8NHYR1tdZjxd2yw=";
src = fetchFromGitHub {
owner = "scikit-hep";
repo = "boost-histogram";
rev = "refs/tags/v${version}";
hash = "sha256-GsgzJqZTrtc4KRkGn468m0e+sgX9rzJdwA9JMPSSPWk=";
};
nativeBuildInputs = [ cmake ];
@@ -49,10 +58,17 @@ buildPythonPackage rec {
pytest-benchmark
];
meta = with lib; {
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";
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];
changelog = "https://github.com/scikit-hep/boost-histogram/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ veprbl ];
};
}