guix_mirror_bot pushed a commit to branch master
in repository guix.
commit aaf9a296edd690905c79687bedcf641a89a71452
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 | 33 ++++++++++++++++-----------------
1 file changed, 16 insertions(+), 17 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 7f68b110aa..b3a9d0cfc3 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -9215,23 +9215,22 @@ to the SolarSoft data analysis environment.")
;; 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