~ruther/guix-local

250f181744f7ff641130eff2b0b8f9850e2e449c — Sharlatan Hellseher 2 years ago dc21d8e
gnu: python-asdf: Update to 3.1.0.

* gnu/packages/astronomy.scm (python-asdf): Update to 3.1.0.
[arguments] <#:phases>: Add 'fix-test-setup phase.
<#:test-arguments>: Move "-p no:legacypath" option from pyproject.toml
to here.

Change-Id: Ief5734d97d483d2e7af3ea59d702fd4697eb048a
1 files changed, 11 insertions(+), 3 deletions(-)

M gnu/packages/astronomy.scm
M gnu/packages/astronomy.scm => gnu/packages/astronomy.scm +11 -3
@@ 4254,18 4254,26 @@ between image and reference catalogs. Currently only aligning images with
(define-public python-asdf
  (package
    (name "python-asdf")
    (version "3.0.1")
    (version "3.1.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "asdf" version))
       (sha256
        (base32 "1jsk7b4mx04l0a08j832vnl309dba3gjnha9mbd61dzs9ridrfna"))))
        (base32 "0fa6y3gmqc0y3nz0h68vq3a84pvx6gc5zp33wg8a4n9b4kipm464"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      #:test-flags
      #~(list "-n" "auto")))
      #~(list "-n" "auto" "-p" "no:legacypath")
      #:phases
      #~(modify-phases %standard-phases
          ;; ImportError: Error importing plugin " no:legacypath": No module
          ;; named ' no:legacypath'
          (add-before 'check 'fix-tests-setup
            (lambda _
              (substitute* "pyproject.toml"
                ((".*:legacypath.*") "")))))))
    (native-inputs
     (list python-fsspec
           python-packaging