From 5723aeef5b4baeba75471c93ffd7a1af51ed5004 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 21 Dec 2025 10:30:10 +0000 Subject: [PATCH] gnu: python-sunpy-soar: Update to 1.12.0. * gnu/packages/astronomy.scm (python-sunpy-soar): Update to 1.12.0. [arguments] : Remove non existed ignored test from the list. : Keep 'sanity-check; remove 'set-home-env; add 'pre-check. [propagated-inputs]: Remove python-matplotlib. [native-inputs]: Remove python-wheel; add python-matplotlib. Change-Id: I91fff5657003edac63f94e565546eabd1ae16b2e --- gnu/packages/astronomy.scm | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 388705ec3c4..9619a0d0d86 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -10128,16 +10128,17 @@ functionality needed for solar data analysis.") (define-public python-sunpy-soar (package (name "python-sunpy-soar") - (version "1.11.1") + (version "1.12.0") (source (origin (method url-fetch) (uri (pypi-uri "sunpy_soar" version)) (sha256 - (base32 "04zdfxb0y7m94lna6bikdc4rwa8n11wh42jyha0fxc604xhy2b3l")))) + (base32 "0ma4j8wy3hbshzafq1xvfifvinx9ahr4r6gvzyqahf2wp5y9rr8l")))) (build-system pyproject-build-system) (arguments (list + ;; tests: 10 passed, 1 skipped, 21 deselected, 1 xfailed #:test-flags ;; Disable tests requiring network access to download test data from ;; and . @@ -10160,30 +10161,24 @@ functionality needed for solar data analysis.") "test_wavelength_column_wavelength_exists" "test_wavelength_range" "test_wavelength_single" - "test_when_sdac_provider_passed" "test_when_soar_provider_passed" "test_when_wrong_provider_passed") " and not ")) #:phases #~(modify-phases %standard-phases - ;; XXX: It fails to check SunPy's optional inputs versions. - (delete 'sanity-check) - (add-before 'check 'set-home-env + (add-before 'check 'pre-check (lambda _ - ;; Tests require HOME to be set. - ;; Permission denied: '/homeless-shelter' (setenv "HOME" "/tmp")))))) (native-inputs (list nss-certs-for-test + python-matplotlib python-pytest python-pytest-doctestplus python-responses python-setuptools - python-setuptools-scm - python-wheel)) + python-setuptools-scm)) (propagated-inputs (list python-astropy - python-matplotlib python-requests python-sunpy)) (home-page "https://docs.sunpy.org/projects/soar")