diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-07 20:22:47 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-30 19:32:15 +0000 |
commit | 06648cd12ed3275e3d3ed19973712622a9add55d (patch) | |
tree | e008a8db396d6d7a71b8c0a92945ed4970a016bc /gnu | |
parent | bf4c6f70a19b6714ca8dd21d011eecc4e9c41c6d (diff) | |
download | guix-06648cd12ed3275e3d3ed19973712622a9add55d.tar.gz guix-06648cd12ed3275e3d3ed19973712622a9add55d.zip |
gnu: python-astropy-iers-data: Update to 0.2024.10.14.0.32.55.
* gnu/packages/astronomy.scm (python-astropy-iers-data): Update to 0.2024.10.14.0.32.55.
[arguments] <#:tests?>: Adjust comments to reflect current
status. <#:phases>: Remove 'set-env-version' phase.
[native-inputs]: Add python-setuptools and python-wheel; remove
python-pytest and python-pytest-remote-data.
Change-Id: Ia22b52dc41405d73ed313e980f798ae725f47703
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 943595e363..fad80e8ff0 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2896,32 +2896,21 @@ astronomy and astrophysics.") (define-public python-astropy-iers-data (package (name "python-astropy-iers-data") - ;; In case of changing the source method git-fetch, consider to check the - ;; tag as it's not following the PyPI version, see - ;; <https://github.com/astropy/astropy-iers-data/issues/17>. - (version "0.2024.9.16.0.32.21") + (version "0.2024.10.14.0.32.55") (source (origin (method url-fetch) (uri (pypi-uri "astropy_iers_data" version)) (sha256 - (base32 "0i63yxw4xfgv1dwaq89xd34xlsnx0n5njcm4adln2gk2ia3gxxig")))) + (base32 "1849jbmz1x6x783w9k08a9i3g4f722lqwlnszh4dyr50dyrfbrzg")))) (build-system pyproject-build-system) (arguments - (list - ;; Dependencies cycle wit python-astropy, see - ;; <https://github.com/astropy/astropy-iers-data/issues/21>. - #:tests? #f - #:phases - #~(modify-phases %standard-phases - (add-before 'build 'set-env-version - (lambda _ - (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))))) + (list #:tests? #f)) ; no tests (native-inputs (list python-hypothesis - python-pytest - python-pytest-remotedata - python-setuptools-scm)) + python-setuptools + python-setuptools-scm + python-wheel)) (home-page "https://docs.astropy.org/en/latest/utils/iers.html") (synopsis "IERS Earth Rotation and Leap Second tables for the astropy core package") (description |