diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-19 23:02:28 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-30 19:32:16 +0000 |
commit | abf8999eee07c2915faaccd7eafe31a67c3924ba (patch) | |
tree | 9faf117224eeda074bf4dd266d7b04a1b1a7adae | |
parent | 1c8b7745848e022bc719ae4ceba5973737e47bc3 (diff) | |
download | guix-abf8999eee07c2915faaccd7eafe31a67c3924ba.tar guix-abf8999eee07c2915faaccd7eafe31a67c3924ba.tar.gz |
gnu: python-pyvo: Update to 1.5.3.
* gnu/packages/astronomy.scm (python-pyvo): Update to 1.5.3.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I75aac22869320c78cd036c3be1ffe6892469ee59
-rw-r--r-- | gnu/packages/astronomy.scm | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 2b2ddaf68e..2eab35e365 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -3970,18 +3970,24 @@ interest, and which require portability between platforms or ease of scripting." (define-public python-pyvo (package (name "python-pyvo") - (version "1.5.2") + (version "1.5.3") (source (origin (method url-fetch) (uri (pypi-uri "pyvo" version)) (sha256 - (base32 "0wcg3jhfwjd9gqs74mw63sgi1yhmgljx1bwk3mxn0p6fv924r8mq")))) + (base32 "0zlqn7qflv5ipmlqkq85qjgggz84zi67jm45w4ayfapmhh74sa7x")))) (build-system pyproject-build-system) (native-inputs - (list python-pytest-astropy python-requests-mock python-setuptools-scm)) + (list python-pytest-astropy + python-requests-mock + python-setuptools + python-setuptools-scm + python-wheel)) (propagated-inputs - (list python-astropy python-pillow python-requests)) + (list python-astropy + python-pillow + python-requests)) (home-page "https://github.com/astropy/pyvo") (synopsis "Access Virtual Observatory data and services") (description |