gnu: python-asdf: Update to 2.13.0.
* gnu/packages/astronomy.scm (python-asdf): Update to 2.13.0. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-astropy, python-psutil, python-pytest, python-pytest-doctestplus, python-pytest-openfiles, python-pytest-remotedata, python-semantic-version. [propagated-inputs]: Add python-asdf-standard, python-asdf-transform-schemas, python-asdf-unit-schemas python-importlib-metadata, python-jsonschema-next, python-lz4. Remove python-jsonschema. Signed-off-by: Christopher Baines <mail@cbaines.net>
parent
80d5eb923d
commit
f1a7edd584
|
@ -58,6 +58,7 @@
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages python-build)
|
#:use-module (gnu packages python-build)
|
||||||
#:use-module (gnu packages python-check)
|
#:use-module (gnu packages python-check)
|
||||||
|
#:use-module (gnu packages python-compression)
|
||||||
#:use-module (gnu packages python-crypto)
|
#:use-module (gnu packages python-crypto)
|
||||||
#:use-module (gnu packages python-science)
|
#:use-module (gnu packages python-science)
|
||||||
#:use-module (gnu packages python-web)
|
#:use-module (gnu packages python-web)
|
||||||
|
@ -1958,26 +1959,37 @@ datetime object.")
|
||||||
(define-public python-asdf
|
(define-public python-asdf
|
||||||
(package
|
(package
|
||||||
(name "python-asdf")
|
(name "python-asdf")
|
||||||
(version "2.8.3")
|
(version "2.13.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "asdf" version))
|
(uri (pypi-uri "asdf" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0i4vq1hsympjgb1yvn4ql0gm8j1mki9ggmj03533kmg0nbzp03yy"))))
|
(base32 "1zixzv4n2fryaszsfchqh2nvp0gzvarhz03fc721yw6iafdadqij"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; NOTE: (Sharlatan-20211229T201059+0000): Tests depend on astropy and
|
;; NOTE: (Sharlatan-20211229T201059+0000): Tests depend on astropy and
|
||||||
;; gwcs, astropy gwcs depend on asdf. Disable circular dependence.
|
;; gwcs, astropy gwcs depend on asdf. Disable circular dependence.
|
||||||
`(#:tests? #f))
|
`(#:tests? #f))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-setuptools-scm
|
(list python-astropy
|
||||||
|
python-packaging
|
||||||
|
python-psutil
|
||||||
|
python-pytest
|
||||||
|
python-pytest-doctestplus
|
||||||
|
python-pytest-openfiles
|
||||||
|
python-pytest-remotedata
|
||||||
python-semantic-version
|
python-semantic-version
|
||||||
python-packaging))
|
python-setuptools-scm))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-importlib-resources
|
(list python-asdf-standard
|
||||||
python-jsonschema
|
python-asdf-transform-schemas
|
||||||
|
python-asdf-unit-schemas
|
||||||
|
python-importlib-metadata
|
||||||
|
python-importlib-resources
|
||||||
python-jmespath
|
python-jmespath
|
||||||
|
python-jsonschema-next
|
||||||
|
python-lz4
|
||||||
python-numpy
|
python-numpy
|
||||||
python-pyyaml))
|
python-pyyaml))
|
||||||
(home-page "https://github.com/asdf-format/asdf")
|
(home-page "https://github.com/asdf-format/asdf")
|
||||||
|
|
Reference in New Issue