diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-21 16:50:15 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-30 15:10:44 +0000 |
commit | 12fcf98071cd2f7e809e40ddf643d93067b6b5d6 (patch) | |
tree | c09f133b0c04d326dc19f882e5f22ccab32a6da9 /gnu/packages/astronomy.scm | |
parent | aeada768d7811a8c0c3f0526d969fee090a54f96 (diff) | |
download | guix-12fcf98071cd2f7e809e40ddf643d93067b6b5d6.tar.gz guix-12fcf98071cd2f7e809e40ddf643d93067b6b5d6.zip |
gnu: python-pyvo: Update to 1.6.
* gnu/packages/astronomy.scm (python-pyvo): Update to 1.6.
Change-Id: Iff2f08d372f950193c53f394d73be07b1f0a1de4
Diffstat (limited to 'gnu/packages/astronomy.scm')
-rw-r--r-- | gnu/packages/astronomy.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index a3f9826208..ec58b81b9f 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -4271,14 +4271,17 @@ interest, and which require portability between platforms or ease of scripting." (define-public python-pyvo (package (name "python-pyvo") - (version "1.5.3") + (version "1.6") (source (origin (method url-fetch) (uri (pypi-uri "pyvo" version)) (sha256 - (base32 "0zlqn7qflv5ipmlqkq85qjgggz84zi67jm45w4ayfapmhh74sa7x")))) + (base32 "1ahcazgxhmxscjgz58mxw75k9g0xm7iffnc4lqfbm3h0wqiz8vnv")))) (build-system pyproject-build-system) + (arguments + (list + #:test-flags #~(list "--pyargs" "pyvo"))) (native-inputs (list python-pytest-astropy python-requests-mock |