summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-01-26 17:27:42 +0000
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:10 +0200
commitd8128447e02e90baac441eb2941b751ed9703655 (patch)
tree8cebd55f3f8a417fe3398c51b4a2ae6ac5be0c69 /gnu/packages/python-xyz.scm
parent85ec6394734dc0c24b020d7c22e365c67460c039 (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm26
1 files changed, 11 insertions, 15 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2935a042ef..80afca3ad9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22527,22 +22527,18 @@ own code, responding to click events and updating clock every second.")
(define-public python-tblib
(package
(name "python-tblib")
- (version "1.6.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "tblib" version))
- (sha256
- (base32
- "0i136n5pydmd202254wzrdbspkw0br0c9mbxhfs9hpfbahvyx6r2"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (invoke "py.test" "-vv" "tests" "README.rst"))))))
+ (version "2.0.0") ; XXX: higher versions fail on 'check phase
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "tblib" version))
+ (sha256
+ (base32 "1mzcf0fp7267yya9ni5qlr8dj190hsnmyxz0cszgi2y0fbr31px6"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-six))
+ (list python-pytest
+ python-setuptools
+ python-wheel))
(home-page "https://github.com/ionelmc/python-tblib")
(synopsis "Traceback serialization library")
(description