diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-30 22:23:31 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-27 17:03:06 +0100 |
commit | 1e161d1578d5ae587128e610b03f63762bf12492 (patch) | |
tree | 25a767dd732a189aa973c5fc453f0da7fb55cb31 /gnu | |
parent | 60b4292131631fec2f211a5d7e2a5143e6c7a633 (diff) | |
download | guix-1e161d1578d5ae587128e610b03f63762bf12492.tar.gz guix-1e161d1578d5ae587128e610b03f63762bf12492.zip |
gnu: python-drms: Update to 0.8.0.
* gnu/packages/astronomy.scm (python-drms): Update to 0.8.0.
[native-inputs]: Remove python-pytest.
Change-Id: Id42d08c1b6e8921cd8fb9e4b58b71a2e133f6679
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 91271e665f..b3ca5074c3 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2422,20 +2422,18 @@ Cesium.") (define-public python-drms (package (name "python-drms") - (version "0.7.1") + (version "0.8.0") (source (origin (method url-fetch) (uri (pypi-uri "drms" version)) (sha256 - (base32 "01q00zwpbhik9lgbc42z6q791ybxc41rxgrj04fpcfkl3hcl0nyr")))) + (base32 "19lqy510d7iyxfz445h2rn4d0rvmd4d3lnjmvbkvv270ckpfw09f")))) (build-system pyproject-build-system) (native-inputs - (list python-astropy - python-pytest-astropy - python-pytest - python-setuptools-scm)) - (propagated-inputs (list python-numpy python-pandas)) + (list python-astropy python-pytest-astropy python-setuptools-scm)) + (propagated-inputs + (list python-numpy python-pandas)) (home-page "https://sunpy.org") (synopsis "Access astronomical HMI, AIA and MDI data with Python") (description |