andreas pushed a commit to branch python-team in repository guix. commit accaa0e8a5c1ff7fc87ced4d255af217202b88d3 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sun Jan 26 17:33:53 2025 +0000
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 --- gnu/packages/python-xyz.scm | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4a42ba3490..722eaa074e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30733,26 +30733,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