diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-11 20:34:14 +0100 |
|---|---|---|
| committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-05-31 17:47:51 +0300 |
| commit | a89d83b5da965644b6e565e0e0a30d28e3c33899 (patch) | |
| tree | e4ee0a47f8be28c6cae7ea6790f836763dca19e6 /gnu/packages/python-xyz.scm | |
| parent | 7df019ed107a1b2739f35ca8c1f4be39441a25e8 (diff) | |
gnu: Add python-numpy-stl.
* gnu/packages/python-xyz.scm (python-numpy-stl): New variable.
Change-Id: Iec45ccf1a2c83dc608769971fe0d2e5b20b20343
Signed-off-by: Artyom V. Poptsov <poptsov.artyom@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0058c665e3..c1232ecc80 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10151,6 +10151,33 @@ include_dirs = ~:*~a/include~%" #$(this-package-input "openblas")))))) (description "This package provides the complete NumPy documentation in the Texinfo, HTML, and PDF formats."))) +(define-public python-numpy-stl + (package + (name "python-numpy-stl") + (version "3.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "numpy_stl" version)) + (sha256 + (base32 "0kgxhghl9j5caydb2a9g2n44zvffd94gb6abday0manxkkvw682s")))) + (build-system pyproject-build-system) + (native-inputs + (list python-cython + python-pytest + python-setuptools + python-wheel)) + (propagated-inputs + (list python-numpy + python-utils)) + (home-page "https://github.com/WoLpH/numpy-stl/") + (synopsis "Read, write and modify binary/ASCII STL files library") + (description + "Library to make reading, writing and modifying both binary and ascii STL +files, file format native to the stereolithography CAD software created by 3D +Systems, easy.") + (license license:bsd-3))) + (define-public python-npx (package (name "python-npx") |
