diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2023-12-16 04:40:14 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-12 21:42:06 +0000 |
commit | 8d2bebdbe0d9ba4f7703ba92944b29204242256e (patch) | |
tree | 370203003b90905704fddde9e1c44e38aa644721 | |
parent | 96ada0e6aa85b1a21a366a81953b032eca2dab82 (diff) | |
download | guix-8d2bebdbe0d9ba4f7703ba92944b29204242256e.tar.gz guix-8d2bebdbe0d9ba4f7703ba92944b29204242256e.zip |
gnu: python-regions: Update to 0.8.
* gnu/packages/astronomy.scm (python-regions): Update to 0.8.
[propagated-inputs]: Add python-h5py, python-matplotlib, python-scipy, and python-shapely.
Change-Id: Icdbbad92a0829d285962f50338e970d3a0d7eaa0
-rw-r--r-- | gnu/packages/astronomy.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 0f206d1ed3..d2b6d43b78 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2276,13 +2276,13 @@ Virtual observatory (VO) using Python.") (define-public python-regions (package (name "python-regions") - (version "0.7") + (version "0.8") (source (origin (method url-fetch) (uri (pypi-uri "regions" version)) (sha256 - (base32 "08wsg9kxnki5pz8gdp81bq06jdmsip382fl02rvnr96cvzr7wf3m")))) + (base32 "09401pz7926zlci7cznd78hmv9947f6jxyy2afqdqc1xaccpzcq2")))) (build-system python-build-system) (arguments `(#:test-target "pytest" @@ -2299,7 +2299,12 @@ Virtual observatory (VO) using Python.") (add-before 'check 'writable-home (lambda _ (setenv "HOME" (getcwd))))))) (propagated-inputs - (list python-astropy python-numpy)) + (list python-astropy + python-h5py + python-matplotlib + python-numpy + python-scipy + python-shapely)) (native-inputs (list python-cython python-extension-helpers |