1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
# nativeBuildInputs
cmake,
# build-system
pybind11,
nanobind,
ninja,
scikit-build-core,
setuptools-scm,
# buildInputs
boost,
# dependencies
numpy,
# tests
pytestCheckHook,
pytest-benchmark,
pytest-xdist,
cloudpickle,
hypothesis,
}:
buildPythonPackage rec {
pname = "boost-histogram";
version = "1.5.2";
pyproject = true;
src = fetchFromGitHub {
owner = "scikit-hep";
repo = "boost-histogram";
tag = "v${version}";
hash = "sha256-kduE5v1oQT76MRxMuGo+snCBdJ+yOjkOJFO45twcUIs=";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake ];
dontUseCmakeConfigure = true;
build-system = [
pybind11
nanobind
ninja
scikit-build-core
setuptools-scm
];
buildInputs = [ boost ];
dependencies = [ numpy ];
nativeCheckInputs = [
pytestCheckHook
pytest-benchmark
pytest-xdist
cloudpickle
hypothesis
];
pytestFlags = [ "--benchmark-disable" ];
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"
];
pythonImportsCheck = [ "boost_histogram" ];
meta = {
description = "Python bindings for the C++14 Boost::Histogram library";
homepage = "https://github.com/scikit-hep/boost-histogram";
changelog = "https://github.com/scikit-hep/boost-histogram/releases/tag/${src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ veprbl ];
};
}
|