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

commit 3f82877b8d77afee44d4cd0b544d22d3df3876c9
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 15 11:15:07 2026 +0000

    gnu: python-drizzle: Update to 2.2.0.
    
    * gnu/packages/astronomy.scm (python-drizzle): Update to 2.2.0.
    [native-inputs]: Remove python-wheel; add python-pytest-doctestplus.
    
    Change-Id: Id27507fb94e42a7c67ffc21cb7e4e6e69482ddc1
---
 gnu/packages/astronomy.scm | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index e946d57afc..e8a4e7c26b 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -4382,19 +4382,20 @@ help you search, obtain and use DKIST data as part of 
your Python software.")
 (define-public python-drizzle
   (package
     (name "python-drizzle")
-    (version "2.1.1")
+    (version "2.2.0")
     (source
      (origin
-       (method git-fetch)       ;no test data in PyPI archive
+       (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/spacetelescope/drizzle";)
-             (commit version)))
+              (url "https://github.com/spacetelescope/drizzle";)
+              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0s2vydy3fp6hvlzxdhx6my4js3vc7vpvy3hpgj4kjkl0r47s9vpx"))))
+        (base32 "1chy80svnbj2z215slxvnih097gh4c08wwchv2nk2ydmgra1bvli"))))
     (build-system pyproject-build-system)
     (arguments
      (list
+      ;; tests: 257 passed, 9 xfailed
       #:phases
       #~(modify-phases %standard-phases
           (add-before 'build 'set-env-version
@@ -4402,15 +4403,17 @@ help you search, obtain and use DKIST data as part of 
your Python software.")
               (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))
           (add-before 'check 'build-extensions
             (lambda _
+              ;; XXX: "drizzle/tests/data" is not part of the final package
+              ;; which blocks using "--pyargs".
               ;; Cython extensions have to be built before running the tests.
               (invoke "python" "setup.py" "build_ext" "--inplace"))))))
     (native-inputs
      (list python-astropy-minimal
            python-gwcs
            python-pytest
+           python-pytest-doctestplus
            python-setuptools
-           python-setuptools-scm
-           python-wheel))
+           python-setuptools-scm))
     (propagated-inputs
      (list python-numpy))
     (home-page "https://github.com/spacetelescope/drizzle";)

Reply via email to