1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-pyavm: Update to 0.9.9.

* gnu/packages/astronomy.scm (python-pyavm): Update to 0.9.9.
[source]: Switch to git-fetch.
[propagated-inputs]: Remove python-astropy and python-numpy.
[native-inputs]: Remove python-setuptools and python-setuptools-scm; add
python-astropy-minimal, python-hatch-vcs, python-hatchling, and
python-numpy.

Change-Id: I840fcb87c7c899d3604fd9c2423ecbc5f63f0096
This commit is contained in:
Sharlatan Hellseher
2026-03-19 15:24:18 +00:00
parent b228254400
commit b8cc023579

View File

@@ -7321,22 +7321,24 @@ and the Generalized Lomb-Scargle periodogram
(define-public python-pyavm
(package
(name "python-pyavm")
(version "0.9.8")
(version "0.9.9")
(source
(origin
(method url-fetch)
(uri (pypi-uri "PyAVM" version))
(method git-fetch)
(uri (git-reference
(url "https://github.com/astrofrog/pyavm")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0vgjqvddq4a5lnmg8msm7fwqs3r6fc748xzvnhyvc387h0z8pdxk"))))
(base32 "1xh8f4w8qiynnm4gssnwwwcml7i5v371fd7kp7a6cv9xp4rns1v6"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pillow
python-pytest
python-setuptools
python-setuptools-scm))
(propagated-inputs
(list python-astropy
python-numpy))
(list python-astropy-minimal
python-hatch-vcs
python-hatchling
python-numpy
python-pillow
python-pytest))
(home-page "https://astrofrog.github.io/pyavm/")
(synopsis "Simple pure-python AVM meta-data handling")
(description