mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-tblib: Update to 2.0.0.
* gnu/packages/python-xyz.scm (python-tblib): Update to 2.0.0. [build-system]: Swap to pyproject-build-system. [native-inputs]: Remove python-six; add python-setuptools and python-wheel. Change-Id: Iafb318162ff5cee5b7f5c0e41d2a4735cee9d30b
This commit is contained in:
parent
85ec639473
commit
d8128447e0
1 changed files with 11 additions and 15 deletions
|
@ -22527,22 +22527,18 @@ own code, responding to click events and updating clock every second.")
|
||||||
(define-public python-tblib
|
(define-public python-tblib
|
||||||
(package
|
(package
|
||||||
(name "python-tblib")
|
(name "python-tblib")
|
||||||
(version "1.6.0")
|
(version "2.0.0") ; XXX: higher versions fail on 'check phase
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "tblib" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "tblib" version))
|
||||||
(base32
|
(sha256
|
||||||
"0i136n5pydmd202254wzrdbspkw0br0c9mbxhfs9hpfbahvyx6r2"))))
|
(base32 "1mzcf0fp7267yya9ni5qlr8dj190hsnmyxz0cszgi2y0fbr31px6"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(replace 'check
|
|
||||||
(lambda _
|
|
||||||
(invoke "py.test" "-vv" "tests" "README.rst"))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest python-six))
|
(list python-pytest
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
(home-page "https://github.com/ionelmc/python-tblib")
|
(home-page "https://github.com/ionelmc/python-tblib")
|
||||||
(synopsis "Traceback serialization library")
|
(synopsis "Traceback serialization library")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue