summaryrefslogtreecommitdiff
path: root/dev-python/vector/vector-1.6.2.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-09 19:35:25 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-09 19:35:25 +0000
commitba06d021fa2243c3f49b809eb6cf06f47a881cea (patch)
treefb51e62413b41dfbef195d3465ffde4056157e47 /dev-python/vector/vector-1.6.2.ebuild
parent3dc27067f5e12af168623c205d85522b92d1e8d9 (diff)
downloadbaldeagleos-repo-ba06d021fa2243c3f49b809eb6cf06f47a881cea.tar.gz
baldeagleos-repo-ba06d021fa2243c3f49b809eb6cf06f47a881cea.tar.xz
baldeagleos-repo-ba06d021fa2243c3f49b809eb6cf06f47a881cea.zip
Adding metadata
Diffstat (limited to 'dev-python/vector/vector-1.6.2.ebuild')
-rw-r--r--dev-python/vector/vector-1.6.2.ebuild44
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-python/vector/vector-1.6.2.ebuild b/dev-python/vector/vector-1.6.2.ebuild
new file mode 100644
index 000000000000..d52f66d559ab
--- /dev/null
+++ b/dev-python/vector/vector-1.6.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9,10,11,12,13} )
+DISTUTILS_USE_PEP517=hatchling
+
+inherit distutils-r1 pypi optfeature
+
+DESCRIPTION="Vector classes and utilities"
+HOMEPAGE="
+ https://github.com/scikit-hep/vector
+ https://pypi.org/project/vector/
+ https://vector.readthedocs.io/
+ https://doi.org/10.5281/zenodo.7054478
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ >=dev-python/numpy-1.13.3[${PYTHON_USEDEP}]
+ >=dev-python/packaging-19[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/hatch-vcs[${PYTHON_USEDEP}]
+"
+
+pkg_postinst() {
+ optfeature "awkward array support" dev-python/awkward
+ optfeature "sympy support" dev-python/sympy
+}
+
+EPYTEST_IGNORE=(
+ # no module named papermill
+ tests/test_notebooks.py
+ # testing for exact (not mathematical) equality against sympy
+ # which changes without being wrong...
+ tests/compute/sympy/lorentz/
+)
+
+distutils_enable_tests pytest