guix_mirror_bot pushed a commit to branch astro-updates in repository guix.
commit e1a6322d8dee1fd5dccbde24ea5aaa525552fae4 Author: Sharlatan Hellseher <[email protected]> AuthorDate: Fri Oct 17 22:20:09 2025 +0100 gnu: python-sunpy-minimal: Don't hide the package. * gnu/packages/astronomy.scm (python-sunpy-minimal): Make package searchable. Change-Id: I4469efdf2da3f8d5b0e8dfe9f7c48a148aaae332 --- gnu/packages/astronomy.scm | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 70bebe640a..eef8995735 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -9460,26 +9460,23 @@ SunPy.") to the SolarSoft data analysis environment.") (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-sunpy-minimal - (hidden-package - (package/inherit python-sunpy - (name "python-sunpy-minimal") - (arguments - (substitute-keyword-arguments (package-arguments python-sunpy) - ((#:tests? _ #t) #f))) - (native-inputs - (list python-setuptools - python-setuptools-scm - python-wheel)) - (propagated-inputs - (list python-astropy-minimal - python-fsspec - python-mpl-animators - python-parfive - python-pyerfa - python-requests))))) + (package/inherit python-sunpy + (name "python-sunpy-minimal") + (arguments + (substitute-keyword-arguments (package-arguments python-sunpy) + ((#:tests? _ #t) #f))) + (native-inputs + (list python-setuptools + python-setuptools-scm + python-wheel)) + (propagated-inputs + (list python-astropy-minimal + python-fsspec + python-mpl-animators + python-parfive + python-pyerfa + python-requests)))) (define-public python-sunpy-soar (package
