diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-05-20 23:12:42 +0100 |
---|---|---|
committer | Andrew Tropin <andrew@trop.in> | 2024-05-30 18:23:40 +0400 |
commit | 7f06891aa9775079ba70da6113ce93f35c3f84e0 (patch) | |
tree | 5f7463ada0bb433f1819b613c7780187f3a8b8eb /gnu | |
parent | 3f9c5f89586bdcf7af96e4c058e34a725fb106f6 (diff) | |
download | guix-7f06891aa9775079ba70da6113ce93f35c3f84e0.tar.gz guix-7f06891aa9775079ba70da6113ce93f35c3f84e0.zip |
gnu: python-rad: Update to 0.20.0
* gnu/packages/astronomy.scm (python-rad): Update to 0.20.0. Adjust
indentation.
Change-Id: I5921c5153ace1032313121c00c73423f3d1e7c84
Signed-off-by: Andrew Tropin <andrew@trop.in>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index e7ce7e7efc..16e5310e74 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -4997,13 +4997,13 @@ default) to world coordinates.") (define-public python-rad (package (name "python-rad") - (version "0.19.2") - (source (origin - (method url-fetch) - (uri (pypi-uri "rad" version)) - (sha256 - (base32 - "08dh9asdjgfmczmqyjplgdvbk3n68qw6akd8h953wq6v3yr4k4rq")))) + (version "0.20.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "rad" version)) + (sha256 + (base32 "05b7qjhahzfjdp820m3qm69wrzb73njjqrzkk7hxkd8gbrbp0mj1")))) (build-system pyproject-build-system) (arguments (list @@ -5012,7 +5012,8 @@ default) to world coordinates.") #:test-flags #~(list "--ignore=tests/test_schemas.py"))) (native-inputs (list python-pytest python-setuptools-scm)) - (propagated-inputs (list python-asdf python-asdf-astropy)) + (propagated-inputs + (list python-asdf python-asdf-astropy)) (home-page "https://github.com/spacetelescope/rad") (synopsis "Roman Attribute Dictionary") (description |