~ruther/guix-local

1e7d4bbf996abf8531b0114308e06d02b484cd73 — Nicolas Graves 5 months ago d3d09be
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>
1 files changed, 14 insertions(+), 8 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +14 -8
@@ 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