mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: python-dill: Update to 0.3.6.
* gnu/packages/python-xyz.scm (python-dill): Update to 0.3.6. [build-system]: Use pyproject-build-system. [arguments]: Run tests conditionally; drop trailing #T from build phase.
This commit is contained in:
parent
d12ad4105a
commit
95fdd862d0
1 changed files with 7 additions and 7 deletions
|
@ -23954,22 +23954,22 @@ (define-public python-anndata
|
|||
(define-public python-dill
|
||||
(package
|
||||
(name "python-dill")
|
||||
(version "0.3.5.1")
|
||||
(version "0.3.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "dill" version))
|
||||
(sha256
|
||||
(base32 "11lc40x37cx2i8qqbc5qklifm65dyjl6prrqsycybvpixzrl2pnp"))))
|
||||
(build-system python-build-system)
|
||||
(base32 "0wr37zwyiprrv29jcc1hl5cla72faiwfs0mhvbxxhmkqd3rmbnz5"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(with-directory-excursion "/tmp"
|
||||
(invoke "nosetests" "-v"))
|
||||
#t)))))
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(with-directory-excursion "/tmp"
|
||||
(invoke "nosetests" "-v"))))))))
|
||||
(native-inputs
|
||||
(list python-nose))
|
||||
(home-page "https://pypi.org/project/dill/")
|
||||
|
|
Loading…
Reference in a new issue