diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2022-01-14 23:40:20 +0000 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2022-01-30 11:46:17 -0300 |
commit | e1437e7ec1aaba0c70678047c336724cbcc658e0 (patch) | |
tree | 5d4beda888a0deddef883f01af0d71ae84f8bdc2 /gnu/packages | |
parent | ab8b76b735237b3722f1bff97f096ce48a222867 (diff) |
gnu: python-asdf: Update to 2.8.3.
* gnu/packages/astronomy.scm: (python-asdf): Update to 2.8.3.
[inputs]: Use the new style. Move python-importlib-resources,
python-jsonschema, python-numpy, python-pyyaml to ...
[propagated-inputs]: ... here. Use the new style. Add python-jmespath.
Signed-off-by: Vinicius Monego <monego@posteo.net>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/astronomy.scm | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index e968fd2480..50fe07f9bb 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2019 by Amar Singh <nly@disroot.org> ;;; Copyright © 2020 R Veera Kumar <vkor@vkten.in> ;;; Copyright © 2020, 2021 Guillaume Le Vaillant <glv@posteo.net> -;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com> +;;; Copyright © 2021, 2022 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2021, 2022 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2021 Greg Hogan <code@greghogan.com> ;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo@hotmail.com> @@ -1460,34 +1460,35 @@ of stand-alone functions and classes.") (define-public python-asdf (package (name "python-asdf") - (version "2.7.4") + (version "2.8.3") (source (origin (method url-fetch) (uri (pypi-uri "asdf" version)) (sha256 - (base32 "1mj52l2m8pbhiqacgjakjpvqi8kyx470yw151lcsswbq5wp0rsc6")))) + (base32 "0i4vq1hsympjgb1yvn4ql0gm8j1mki9ggmj03533kmg0nbzp03yy")))) (build-system python-build-system) (arguments - ;; TODO: (Sharlatan-20210207T165820+0000): Tests depend on astropy, astropy - ;; depends on asdf. Disable circular dependence. + ;; NOTE: (Sharlatan-20211229T201059+0000): Tests depend on astropy and + ;; gwcs, astropy gwcs depend on asdf. Disable circular dependence. `(#:tests? #f)) (native-inputs - `(("packaging" ,python-packaging) - ("semantic-version" ,python-semantic-version) - ("setuptools-scm" ,python-setuptools-scm))) - (inputs - `(("importlib-resources" ,python-importlib-resources) - ("jsonschema" ,python-jsonschema) - ("numpy" ,python-numpy) - ("pyyaml" ,python-pyyaml))) - (home-page "https://github.com/asdf-format/asdf") - (synopsis "Python tools to handle ASDF files") - (description - "The Advanced Scientific Data Format (ASDF) is a next-generation + (list python-setuptools-scm + python-semantic-version + python-packaging)) + (propagated-inputs + (list python-importlib-resources + python-jsonschema + python-jmespath + python-numpy + python-pyyaml)) + (home-page "https://github.com/asdf-format/asdf") + (synopsis "Python tools to handle ASDF files") + (description + "The Advanced Scientific Data Format (ASDF) is a next-generation interchange format for scientific data. This package contains the Python implementation of the ASDF Standard.") - (license license:bsd-3))) + (license license:bsd-3))) (define-public python-astroalign (package |