guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 87fba864c14539c881f39ca035e6724c01dfa68d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 17 16:24:06 2025 +0100
gnu: python-glue-astronomy: Update to 0.14.0.
* gnu/packages/astronomy.scm (python-glue-astronomy): Update to 0.14.0.
[propagated-inputs]: Remove python-glue-qt; add python-pyqt and
python-reproject.
[native-inputs]: Add python-setuptools.
Change-Id: Ie9852061d710e9c71908473af48f753a3b4ad009
---
gnu/packages/astronomy.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index d0275ba2cc..cc8c1ffe4f 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -4546,17 +4546,17 @@ Python.")
(define-public python-glue-astronomy
(package
(name "python-glue-astronomy")
- (version "0.12.0")
+ (version "0.14.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "glue_astronomy" version))
(sha256
- (base32 "0b65kybnknrnz1nh1kjvsh9k9smia0gyigwn5rc3zrg1qys3wlk4"))))
+ (base32 "0f2849jyhyxldrxlls00gpq9qckrfvxrkn796j5zb8j92l2qjgnp"))))
(build-system pyproject-build-system)
(arguments
(list
- ;; 77 passed, 3 deselected
+ ;; tests: 77 passed, 2 skipped, 3 deselected
#:test-flags
#~(list "--pyargs" "glue_astronomy"
"-k" (string-join
@@ -4568,18 +4568,20 @@ Python.")
"test_spectrum1d_2d_data[2]"
"test_spectrum1d_2d_data[3]")
" and not "))))
+ (native-inputs
+ (list python-mock
+ python-pytest-astropy
+ python-setuptools
+ python-setuptools-scm))
(propagated-inputs
(list python-astropy
python-glue-core
- python-glue-qt
+ python-pyqt ;PyQt5
python-regions
+ python-reproject
python-specreduce
python-spectral-cube
python-specutils))
- (native-inputs
- (list python-mock
- python-pytest-astropy
- python-setuptools-scm))
(home-page "https://github.com/glue-viz/glue-astronomy")
(synopsis "Astronomy-specific plugins for glue")
(description