diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-17 21:01:12 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-28 22:07:01 +0000 |
| commit | 75eb4cc9139a0e00a8d679b424b0819298c896b7 (patch) | |
| tree | b4945182f477303db4ddd40cf418756c22ec27c5 | |
| parent | 9ef8f10a6db0649236d18b4c67d4c86bc4b46c69 (diff) | |
gnu: python-pyvo: Update to 1.8.1.
* gnu/packages/astronomy.scm (python-pyvo): Update to 1.8.1.
[phases]{include-package-data}: Remove as no longer required, resolved
by upstream with "pyvo.mivot.writer = *.xsd".
{post-check}: Remove phase, see:
<https://codeberg.org/guix/guix/issues/4488>.
Change-Id: I431059d80d5f0ce4c3bf5b2d898c63e3b5042a1a
| -rw-r--r-- | gnu/packages/astronomy.scm | 31 |
1 files changed, 8 insertions, 23 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 97bce46a6a..4a65f7e632 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -8188,7 +8188,7 @@ spectra, and data.") (define-public python-pyvo (package (name "python-pyvo") - (version "1.8") + (version "1.8.1") (source (origin (method git-fetch) @@ -8197,29 +8197,13 @@ spectra, and data.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0ks1542i85y042yny3ka6gsrgy7pyv0xdaclirmvqrkakikhv70b")))) + (base32 "1cizipvfaqcjli1jirm2pc9fm2j8jrjrpdnzwar8lzvzpkyc7hm6")))) (build-system pyproject-build-system) (arguments (list - ;; tests: 430 passed, 56 skipped, 1 xfailed + ;; tests: 441 passed, 56 skipped, 1 xfailed #:test-flags - #~(list "--pyargs" "pyvo") - #:phases - #~(modify-phases %standard-phases - (add-after 'install 'include-package-data - ;; FIXME: Check why pyproject-build-system ignores coping some - ;; package data files during build/install phases. - (lambda* (#:key inputs outputs #:allow-other-keys) - (for-each - (lambda (file) - (install-file file - (string-append (site-packages inputs outputs) - "/pyvo/mivot/writer/"))) - (find-files "pyvo/mivot/writer" "\\.xsd$")))) - (add-before 'check 'post-check - (lambda _ - (for-each delete-file-recursively - (find-files #$output "__pycache__" #:directories? #t))))))) + #~(list "--pyargs" "pyvo"))) (native-inputs (list python-pytest-astropy python-pytest-doctestplus @@ -8228,9 +8212,10 @@ spectra, and data.") python-setuptools-scm)) (propagated-inputs (list python-astropy - python-defusedxml ; extra requirements - python-pillow ; extra requirements - python-requests)) + python-requests + ;; [optioal] + python-defusedxml + python-pillow)) (home-page "https://github.com/astropy/pyvo") (synopsis "Access Virtual Observatory data and services") (description |
