~ruther/guix-local

1fe489820b7076da52b66c7282dd596008a34ed4 — Nicolas Graves 4 months ago a6ff5a6
gnu: python-ilinkedlist: Update to 0.4.0-0.b5ea3f6.

* gnu/packages/python-xyz.scm (python-ilinkedlist): Update to 0.4.0-0.b5ea3f6.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools.

Change-Id: I2966a3a431b004481242d988d3cb1359e244c434
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 14 insertions(+), 9 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +14 -9
@@ 28266,18 28266,23 @@ decisions with any given backend.")
(define-public python-ilinkedlist
  (package
    (name "python-ilinkedlist")
    (version "0.4.0")
    (properties '((commit . "b5ea3f67833071c2e0aba2eac35e82496f469238")
                  (revision . "0")))
    (version (git-version "0.4.0"
                          (assoc-ref properties 'revision)
                          (assoc-ref properties 'commit)))
    (home-page "https://github.com/luther9/ilinkedlist-py")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "ilinkedlist" version))
       (method git-fetch)
       (uri (git-reference
             (url home-page)
             (commit (assoc-ref properties 'commit))))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "0nrw4sr3afldrp7073hvc0rgdz282s0l819jdmj1i6nn05v33h0l"))))
    (build-system python-build-system)
    (native-inputs (list python-pytest))
    (inputs (list python))
    (home-page "https://github.com/luther9/ilinkedlist-py")
        (base32 "0lrs6arzm7dg70ny4ri06alhi40s03n71jsx5hsi0fimvwyvfhch"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-pytest python-setuptools))
    (synopsis "Immutable linked list library")
    (description
     "This is a implementation of immutable linked lists for Python.  It