guix_mirror_bot pushed a commit to branch master
in repository guix.
commit ecb9b498fe9109a9e75e02c0d613d756e98a7c56
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Wed Feb 4 15:18:09 2026 +0100
gnu: python-lofar-h5plot: Update to 2.9.2.
* gnu/packages/astronomy.scm (python-lofar-h5plot): Update to 2.9.2.
[source]: Switch to git-fetch.
[propagated-inputs]: Remove python-numpy-1; add python-numpy.
Change-Id: Ia3f868d86e70ce1bc24ef112671b6c9f07b57b93
Reviewed-by: Reza Housseini <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/astronomy.scm | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index ca59502473..846f768598 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -17,7 +17,7 @@
;;; Copyright © 2024-2025 Artyom V. Poptsov <[email protected]>
;;; Copyright © 2025 Vasilii Smirnov <[email protected]>
;;; Copyright © 2025 Daniel Ziltener <[email protected]>
-;;; Copyright © 2025 Hugo Buddelmeijer <[email protected]>
+;;; Copyright © 2025-2026 Hugo Buddelmeijer <[email protected]>
;;; Copyright © 2025 Brendan Tildesley <[email protected]>
;;;
;;; This file is part of GNU Guix.
@@ -6553,13 +6553,16 @@ emission lines in 1-D spectra, especially galaxy and
quasar spectra.")
(define-public python-lofar-h5plot
(package
(name "python-lofar-h5plot")
- (version "2.9.1")
+ (version "2.9.2")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "lofar_h5plot" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tikk3r/lofar-h5plot")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0gxri18iqsw1l5zxn40475zj34h5nn1bscfrhkc739vpqjmj60hz"))))
+ (base32 "14v7jld6cd39f4l57jk93xn94s911x1zi53ms3dmd414chklsgys"))))
(build-system pyproject-build-system)
(arguments
(list #:tests? #f)) ; no tests provided
@@ -6569,7 +6572,7 @@ emission lines in 1-D spectra, especially galaxy and
quasar spectra.")
(propagated-inputs
(list python-losoto
python-matplotlib
- python-numpy-1
+ python-numpy
python-pyqt
python-pyqt5-sip))
(home-page "https://github.com/tikk3r/lofar-h5plot")