summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-01-26 17:33:53 +0000
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:10 +0200
commit1e62855b54ba7b05ec0a8de07a31726d35e8860e (patch)
tree2f4d743bcb21fa321230afd9674a2f7e58af9b22 /gnu/packages/python-xyz.scm
parentd8128447e02e90baac441eb2941b751ed9703655 (diff)
gnu: python-toolz: Update to 1.0.0.
* gnu/packages/python-xyz.scm (python-toolz): Update to 1.0.0. [build-system]: Swap to pyproject-build-system. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I275909a94c8214aecd9ed6969589df443deb28cb
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm19
1 files changed, 6 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 80afca3ad9..1fd7f5c7ee 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30744,26 +30744,19 @@ functions and classes.")
(define-public python-toolz
(package
(name "python-toolz")
- (version "0.11.2")
+ (version "1.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "toolz" version))
(sha256
(base32
- "0cxwlh8dz8gq0l0bzchjnqqwhdp261nfd958ppqm518k2mg2scbb"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key inputs outputs tests? #:allow-other-keys)
- (when tests?
- (add-installed-pythonpath inputs outputs)
- (invoke "python" "-m" "pytest" "--doctest-modules"
- "--pyargs" "toolz")))))))
+ "00ks0jhl1jwm9576c5sh10pnla8ni21yvg4kcxasr627l3cy71ic"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest))
+ (list python-pytest
+ python-setuptools
+ python-wheel))
(home-page "https://github.com/pytoolz/toolz/")
(synopsis "List processing tools and functional utilities")
(description