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

commit 0ee787345884f69f710363f80583cf7cf233400b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 16 13:30:18 2026 +0100

    gnu: python-pysiaf: Update to 0.28.0.
    
    * gnu/packages/astronomy.scm (python-pysiaf): Update to 0.28.0.
    [source]: Switch to git-fetch.
    [phases]{relax-requirements}: Remove phase.
    [description]: Open acronym for JWST
---
 gnu/packages/astronomy.scm | 28 ++++++++++++----------------
 1 file changed, 12 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 27b136f571..9cb6014218 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -9230,13 +9230,16 @@ weather indices as pysat.Instrument objects.")
 (define-public python-pysiaf
   (package
     (name "python-pysiaf")
-    (version "0.26.0")
+    (version "0.28.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "pysiaf" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/spacetelescope/pysiaf";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "19z8kqqkv6qv8dzcq3s593abwdmzhnrapd42fyj03z1j9bhvlmia"))))
+        (base32 "14zacxpc9qjzhs0ncaiyrw04rriy4bb26yp5ca8wbhlkhphpaw9i"))))
     (build-system pyproject-build-system)
     (arguments
      (list
@@ -9245,15 +9248,7 @@ weather indices as pysat.Instrument objects.")
       ;; Disable 2 failing tests, see
       ;; <https://github.com/spacetelescope/pysiaf/issues/338>
       #~(list "-k" (string-append "not test_write_jwst_siaf_xlsx"
-                                  " and not test_write_jwst_siaf_xml" ))
-
-      #:phases
-      #~(modify-phases %standard-phases
-          (add-after 'unpack 'relax-requirements
-            (lambda _
-              (substitute* "pyproject.toml"
-                ;; All tests passed.
-                (("astropy >= 7.0.0, < 8.0.0") "astropy")))))))
+                                  " and not test_write_jwst_siaf_xml" ))))
     (native-inputs
      (list python-pytest
            python-setuptools
@@ -9269,10 +9264,11 @@ weather indices as pysat.Instrument objects.")
     (home-page "https://pysiaf.readthedocs.io/";)
     (synopsis "Handling SIAF for space telescopes")
     (description
-     "@code{pysiaf} is a python package to access, interpret, maintain, and
+     "@code{pysiaf} is a Python package to access, interpret, maintain, and
 generate @acronym{Handling of Science Instrument Aperture Files, SIAF}, in
-particular for JWST.  Tools for applying the frame transformations, plotting,
-comparison, and validation are provided.")
+particular for @acronym{JWST, James Webb Space Telescope}.  Tools for applying
+the frame transformations, plotting, comparison, and validation are
+provided.")
     (license license:bsd-3)))
 
 (define-public python-pysiril

Reply via email to