diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-09 18:17:23 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-29 15:08:08 +0000 |
commit | 87d5ae0093aadccc76b5d4f37b7c8a0fbb75185a (patch) | |
tree | 28e9daaf97636dfca2ff263fb3304d448c396836 /gnu | |
parent | 5754757486962c334d7b8e7c28fc3088297f4117 (diff) | |
download | guix-87d5ae0093aadccc76b5d4f37b7c8a0fbb75185a.tar.gz guix-87d5ae0093aadccc76b5d4f37b7c8a0fbb75185a.zip |
gnu: python-asdf-standard: Update to 1.1.1.
* gnu/packages/astronomy.scm (python-asdf-standard): Update to 1.1.1.
[arguments] <#:phases>: Swap 'remove-blocking-tests phases to use <#:test-flags>.
<#:test-flags>: Add more file to ignore to break cycle with python-asdf.
Change-Id: I8c80d4371adf55de77ef718a21bf8599d0fce17e
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 808cbb46d6..8619dac066 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -4297,25 +4297,24 @@ implementation of the ASDF Standard.") (define-public python-asdf-standard (package (name "python-asdf-standard") - (version "1.0.3") + (version "1.1.1") (source (origin (method url-fetch) (uri (pypi-uri "asdf_standard" version)) (sha256 (base32 - "0i7xdjwn5prg2hcnf1zhw57mszc68jjr5sv4rimpzcg7f2dgzn5g")))) + "00k1fzc8y8j0ar1chq0nqyfw8bgkkjgrkm32ibn0kz2vn715nlq1")))) (build-system pyproject-build-system) (arguments - (list #:phases #~(modify-phases %standard-phases - (add-before 'check 'remove-blocking-tests - (lambda _ - ;; Remove tests require python-asdf where - ;; python-asdf require python-asdf-standard, - ;; break circular dependencies. - (for-each delete-file - (list "tests/test_manifests.py" - "tests/test_integration.py"))))))) + (list + #:test-flags + ;; Remove tests requiring python-asdf where python-asdf requires + ;; python-asdf-standard, break circular dependencies. + #~(list "--ignore=tests/test_asdf_schema.py" + "--ignore=tests/test_integration.py" + "--ignore=tests/test_manifests.py" + "--ignore=tests/test_yaml_schema.py"))) (native-inputs (list python-astropy python-jsonschema python-pypa-build |