guix_mirror_bot pushed a commit to branch astro-updates in repository guix.
commit 1ebd50459e8afcba199de899f4afdaa2a8941624 Author: Sharlatan Hellseher <[email protected]> AuthorDate: Fri Oct 17 16:09:48 2025 +0100 gnu: Add python-stdatamodels-minimal. * gnu/packages/astronomy.scm (python-stdatamodels-minimal): New variable. Change-Id: I89cc66dbfbaffbab6b4a1c169bce3feba36642f4 --- gnu/packages/astronomy.scm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index eb5018f647..e3a6fb7d37 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")
