guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 1fe489820b7076da52b66c7282dd596008a34ed4
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Oct 27 22:18:26 2025 +0100
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 <[email protected]>
---
gnu/packages/python-xyz.scm | 23 ++++++++++++++---------
1 file changed, 14 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 056b4e3a32..ed681e5f3d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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