diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-20 23:33:00 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-30 15:07:41 +0000 |
commit | 408c7d9443de825219d66aeb79d007f7d48754ed (patch) | |
tree | 2a0424243748c08c773c86d5eb82ad377fe1b1e0 | |
parent | 3fc77b6987eaea145cc5a3453f56ae6c53b44758 (diff) | |
download | guix-408c7d9443de825219d66aeb79d007f7d48754ed.tar.gz guix-408c7d9443de825219d66aeb79d007f7d48754ed.zip |
gnu: Add python-asdf-3.
* gnu/packages/astronomy.scm (python-asdf-3): New variable.
Change-Id: I1dda9cb5590a9be34b860b4c900af5bc5101dab6
-rw-r--r-- | gnu/packages/astronomy.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index a4a315e92a..52951bcbef 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1649,6 +1649,17 @@ interchange format for scientific data. This package contains the Python implementation of the ASDF Standard.") (license license:bsd-3))) +(define-public python-asdf-3 + (package + (inherit python-asdf) + (version "3.5.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "asdf" version)) + (sha256 + (base32 "0scnw5y4x5k3vyfylq0w612b662xlccx3gsscaw082zlv2yxfyh4")))))) + (define-public python-asdf-astropy (package (name "python-asdf-astropy") |