aboutsummaryrefslogtreecommitdiff
blob: 96950ebe599e73309f07ce423e20f24d2f9b7e13 (plain)
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
EAPI=8

PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi

DESCRIPTION="Python bindings for the C++14 Boost::Histogram library"
HOMEPAGE="https://github.com/scikit-hep/boost-histogram"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"

RDEPEND="
	dev-libs/boost:=[python,${PYTHON_USEDEP}]
	dev-python/numpy[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
	test? (
		dev-python/cloudpickle[${PYTHON_USEDEP}]
		dev-python/hypothesis[${PYTHON_USEDEP}]
	)
"

src_prepare() {
	default
	sed -i 's/"pytest-benchmark"//g' pyproject.toml || die
}

distutils_enable_tests pytest

EPYTEST_IGNORE=(
	tests/test_benchmark_1d.py
	tests/test_benchmark_2d.py
	tests/test_benchmark_category_axis.py
	tests/test_pickle.py
	tests/test_threaded_fill.py
)