guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 3fb89a4223cae8830c53587f75f02cbe23190fec
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Oct 15 21:36:37 2025 +0100
gnu: Add python-ndcube-minimal.
* gnu/packages/astronomy.scm (python-ndcube-minimal): New variable.
Change-Id: I53f024952288b72572abf6cfe3c1514b092ecce8
---
gnu/packages/astronomy.scm | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index b3a9d0cfc3..8c09416152 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -5880,6 +5880,17 @@ world can be described by @acronym{WCS, World Coordinate
System}
translations.")
(license license:bsd-2)))
+;; A bare minimal package, mainly to use in tests and reduce closure
+;; size. Tests are left out in the main package to slim down native-inputs.
+(define-public python-ndcube-minimal
+ (package/inherit python-ndcube
+ (name "python-ndcube-minimal")
+ (arguments
+ (list #:tests? #f))
+ (native-inputs
+ (list python-setuptools
+ python-setuptools-scm))))
+
(define-public python-petrofit
(package
(name "python-petrofit")