guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit f20476a288be36c5daf1de64ea19cb291d8f7c97
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Dec 14 14:54:27 2025 +0000
gnu: python-naima: Update to 0.10.3.
* gnu/packages/astronomy.scm (python-naima): Update to 0.10.3.
[native-inputs]: Remove python-setuptools, python-setuptools-scm, and
python-wheel; add python-hatch-vcs and python-hatchling.
[propagated-inputs]: Add python-numpy.
Change-Id: I91676156429f90237190f15cd1a7429ff31b4026
---
gnu/packages/astronomy.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index b79ed37a3a..d9f12722cb 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -6385,25 +6385,26 @@ the easy construction of interactive matplotlib widget
based animations.")
(define-public python-naima
(package
(name "python-naima")
- (version "0.10.0")
+ (version "0.10.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "naima" version))
(sha256
- (base32 "1lng2prl2kzzpgrkj11hl53cvqdh0gpk8cdqkvcg08k3bivzk8q8"))))
+ (base32 "16z3qzdd31is2dxkp4jgazcykrhx3m2i3qrs7dl9rbhlj5nxx1iy"))))
(build-system pyproject-build-system)
+ ;; tests: 213 passed, 2 skipped, 1 xpassed, 99 warnings
(native-inputs
- (list python-pytest
- python-setuptools
- python-setuptools-scm
- python-wheel))
+ (list python-hatch-vcs
+ python-hatchling
+ python-pytest))
(propagated-inputs
(list python-astropy
python-corner
python-emcee
python-h5py
python-matplotlib
+ python-numpy
python-pyyaml
python-scipy))
(home-page "http://github.com/zblz/naima")