guix_mirror_bot pushed a commit to branch master
in repository guix.
commit ed5370296c1b242d614f5e27600c0c45286ab59e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Aug 21 20:39:45 2025 +0100
gnu: python-aiapy: Fix build.
* gnu/packages/astronomy.scm (python-aiapy):
[arguments] <phases>: Delete 'sanity-check.
[native-inputs]: Remove python-setuptools and python-wheel; add
nss-certs-for-test and python-setuptools-next.
Change-Id: I9e3239158fcd5bce616cfc299438e45a0ff13178
---
gnu/packages/astronomy.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 13941efdfc..478cdeb3c7 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1792,20 +1792,22 @@ model-fitting photometry or morphological analyses.")
#~(list "--numprocesses" (number->string (min 8 (parallel-job-count))))
#:phases
#~(modify-phases %standard-phases
+ ;; It fails to check SunPy's optional inputs versions.
+ (delete 'sanity-check)
(add-before 'check 'set-home
(lambda _
;; E PermissionError: [Errno 13] Permission denied:
;; '/homeless-shelter'
(setenv "HOME" "/tmp"))))))
(native-inputs
- (list python-pytest
+ (list nss-certs-for-test
+ python-pytest
python-pytest-astropy
python-pytest-cov
python-pytest-doctestplus
python-pytest-xdist
- python-setuptools
- python-setuptools-scm-next
- python-wheel))
+ python-setuptools-next
+ python-setuptools-scm-next))
(propagated-inputs
(list python-sunpy))
(home-page "https://aia.lmsal.com/")