From b8cc023579e50f43782d1b2bd1012fe6d4cf285d Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 19 Mar 2026 15:24:18 +0000 Subject: [PATCH] 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 --- gnu/packages/astronomy.scm | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 9d915dde1a..764c44e0a9 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -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