summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Leitner <dev@g0hl1n.net>2025-07-14 14:42:33 +0200
committerKhem Raj <raj.khem@gmail.com>2025-07-15 00:25:31 -0700
commit1e65f6bc278b3a65eb1ddf0394d195c6372531ae (patch)
treecc3b37c76ff9020545d2b9121d66f2f15d1ede9b
parentcafce9517144c73f59e108712a0d328a1a51301e (diff)
downloadmeta-openembedded-1e65f6bc278b3a65eb1ddf0394d195c6372531ae.tar.gz
python3-vector: add initial recipe for version 1.6.2
Add support for the python3 vector library. Vector is a Python library for 2D and 3D spatial vectors, as well as 4D space-time vectors. It is especially intended for performing geometric calculations on arrays of vectors, rather than one vector at a time in a Python for loop. Signed-off-by: Richard Leitner <dev@g0hl1n.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-python/recipes-devtools/python/python3-vector_1.6.2.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-vector_1.6.2.bb b/meta-python/recipes-devtools/python/python3-vector_1.6.2.bb
new file mode 100644
index 0000000000..9452a838b3
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-vector_1.6.2.bb
@@ -0,0 +1,22 @@
1SUMMARY = "Python library for arrays of 2D, 3D, and Lorentz vectors"
2DESCRIPTION = "\
3 Vector is a Python library for 2D and 3D spatial vectors, as well as 4D space-time vectors. \
4 It is especially intended for performing geometric calculations on arrays of vectors, rather \
5 than one vector at a time in a Python for loop.\
6"
7HOMEPAGE = "https://github.com/scikit-hep/vector"
8BUGTRACKER = "https://github.com/scikit-hep/vector/issues"
9SECTION = "devel/python"
10LICENSE = "BSD-3-Clause"
11LIC_FILES_CHKSUM = "file://LICENSE;md5=2963f0dc7a24919505850460dd1a785b"
12
13DEPENDS += "python3-hatch-vcs-native"
14
15SRC_URI[sha256sum] = "6e59d9db8b615016fa542a2e8150d0c819046fe6940badd267811a454a7f0eca"
16
17inherit pypi python_hatchling
18
19RDEPENDS:${PN} += "\
20 python3-numpy \
21 python3-packaging \
22"