diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-15 21:36:37 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-30 18:34:49 +0000 |
| commit | 3fb89a4223cae8830c53587f75f02cbe23190fec (patch) | |
| tree | fe43b50ad3640f89f55f5a416c6ff3956c6c3e93 | |
| parent | aaf9a296edd690905c79687bedcf641a89a71452 (diff) | |
gnu: Add python-ndcube-minimal.
* gnu/packages/astronomy.scm (python-ndcube-minimal): New variable.
Change-Id: I53f024952288b72572abf6cfe3c1514b092ecce8
| -rw-r--r-- | gnu/packages/astronomy.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index b3a9d0cfc33..8c094161528 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") |
