guix_mirror_bot pushed a commit to branch astro-updates
in repository guix.

commit 14937baf26ace1cbfd419f246c408532ea926b3a
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 735d670ab2..ab003b3335 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

Reply via email to