blob: a57240b492720c67559d7650977721bf19076c82 (
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
|
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=hatchling
inherit distutils-r1 pypi optfeature
DESCRIPTION="Vector classes and utilities"
HOMEPAGE="
https://github.com/scikit-hep/vector
https://vector.readthedocs.io/
https://doi.org/10.5281/zenodo.7054478
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
# tests need numba
RESTRICT="test"
RDEPEND="
>=dev-python/numpy-1.13.3[${PYTHON_USEDEP}]
>=dev-python/packaging-19[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-python/hatch-vcs[${PYTHON_USEDEP}]
"
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
pkg_postinst() {
optfeature "awkward array support" dev-python/awkward
optfeature "sympy support" dev-python/sympy
}
|