From 1e7d4bbf996abf8531b0114308e06d02b484cd73 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 21 Nov 2025 18:41:02 +0100 Subject: [PATCH] gnu: python-roundrobin: Update to 0.0.4. * gnu/packages/python-xyz.scm (python-roundrobin): Update to 0.0.4. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I46818a813299c275fa9bfda2454f4881dedd3505 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 15b2e9846a64ad99163329f7bd54680e7d04027b..a3b2ef0ee38827c63e25a5c47184302be479d8b2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -31634,14 +31634,20 @@ discover file changes.") (define-public python-roundrobin (package (name "python-roundrobin") - (version "0.0.2") - (source (origin - (method url-fetch) - (uri (pypi-uri "roundrobin" version)) - (sha256 - (base32 "1akwhvfyi0120zg2xkhfc6jwfkirz5x90yyvw06bndhaaxwcnc5c")))) - (build-system python-build-system) - (arguments '(#:tests? #f)) ;no tests on PyPI and no tags in repo + (version "0.0.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/linnik/roundrobin") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0hdgwavrfj23c61142mnlxz5sd9ayp6svbgj2g4wdpiqy7h49rvr")))) + (build-system pyproject-build-system) + (arguments + (list #:test-backend #~'unittest)) + (native-inputs (list python-setuptools)) (home-page "https://github.com/linnik/roundrobin") (synopsis "Collection of roundrobin utilities") (description