mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-schema-salad: Update to 7.1.20210316164414.
* gnu/packages/bioinformatics.scm (python-schema-salad): Update to 7.1.20210316164414. [arguments]: Add skip-failing-tests phase.
This commit is contained in:
parent
3a2747ab74
commit
12e210d907
1 changed files with 15 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
;;; Copyright © 2016, 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2016, 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2016, 2018 Raoul Bonnal <ilpuccio.febo@gmail.com>
|
;;; Copyright © 2016, 2018 Raoul Bonnal <ilpuccio.febo@gmail.com>
|
||||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2017, 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
||||||
;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com>
|
;;; Copyright © 2018 Gábor Boskovits <boskovits@gmail.com>
|
||||||
;;; Copyright © 2018, 2019, 2020, 2021 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
|
;;; Copyright © 2018, 2019, 2020, 2021 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
|
||||||
|
@ -2596,15 +2596,27 @@ accessing bigWig files.")
|
||||||
(define-public python-schema-salad
|
(define-public python-schema-salad
|
||||||
(package
|
(package
|
||||||
(name "python-schema-salad")
|
(name "python-schema-salad")
|
||||||
(version "7.0.20200811075006")
|
(version "7.1.20210316164414")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "schema-salad" version))
|
(uri (pypi-uri "schema-salad" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wanbwmqb189x1m0vacnhpivfsr8rwbqknngivzxxs8j46yj80bg"))))
|
"04jaykdpgfnkrghvli5swxzqp7yba842am4bz42hcfljsmkrxvrk"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'skip-failing-tests
|
||||||
|
(lambda _
|
||||||
|
;; Skip tests that require network access.
|
||||||
|
(substitute* "schema_salad/tests/test_cwl11.py"
|
||||||
|
(("^def test_(secondaryFiles|outputBinding)" all)
|
||||||
|
(string-append "@pytest.mark.skip(reason="
|
||||||
|
"\"test requires network access\")\n"
|
||||||
|
all)))
|
||||||
|
#t)))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-cachecontrol" ,python-cachecontrol-0.11)
|
`(("python-cachecontrol" ,python-cachecontrol-0.11)
|
||||||
("python-lockfile" ,python-lockfile)
|
("python-lockfile" ,python-lockfile)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue