summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-27 22:18:26 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-28 20:27:25 +0000
commit1fe489820b7076da52b66c7282dd596008a34ed4 (patch)
treef4016f6b24d5981ef6af5cd2a520d05fe7f83a87
parenta6ff5a6df5b766f4b1bdb26ddea78b06ffbf6601 (diff)
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>
-rw-r--r--gnu/packages/python-xyz.scm23
1 files changed, 14 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 056b4e3a322..ed681e5f3d9 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