summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-21 18:41:02 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-22 16:10:12 +0000
commit1e7d4bbf996abf8531b0114308e06d02b484cd73 (patch)
tree90997c59969c7bfb1f5e0a9352ecbfd2f488fd85
parentd3d09be3cab1a72193ac78b23a1c75b8ae089a79 (diff)
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 <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-xyz.scm22
1 files changed, 14 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 15b2e9846a6..a3b2ef0ee38 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