diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-17 16:09:48 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-30 18:34:50 +0000 |
| commit | 588614e8a87f494f96c8161097c44eaed90d2fc4 (patch) | |
| tree | 2e507843b1c7ce4a06db29334c5d359ddce4b12a | |
| parent | 3fb89a4223cae8830c53587f75f02cbe23190fec (diff) | |
gnu: Add python-stdatamodels-minimal.
* gnu/packages/astronomy.scm (python-stdatamodels-minimal): New variable.
Change-Id: I89cc66dbfbaffbab6b4a1c169bce3feba36642f4
| -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 8c094161528..1afc0fc307d 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -8582,6 +8582,17 @@ implemented in the @acronym{JWST, James Webb Space Telescope} and @acronym{Roman, Nancy Grace Roman Space Telescope} calibration software.") (license license:bsd-3))) +;; 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-stdatamodels-minimal + (package/inherit python-stdatamodels + (name "python-stdatamodels-minimal") + (arguments + (list #:tests? #f)) + (native-inputs + (list python-setuptools + python-setuptools-scm)))) + (define-public python-stpipe (package (name "python-stpipe") |
