summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-27 22:22:02 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-28 20:27:25 +0000
commit183ca249db8bd91442c4e823343139f2f030c206 (patch)
tree1be037b01b1ac780aa34158601adf6d29cad0179
parent1fe489820b7076da52b66c7282dd596008a34ed4 (diff)
gnu: python-readlike: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-readlike): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-pytest, python-setuptools. Change-Id: Ifaaeae8b88e2cf137ff77997e36cddd19eee8d48 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-xyz.scm12
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ed681e5f3d9..679e854331a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28299,11 +28299,15 @@ with a non-list @code{cdr}.")
(version "0.1.3")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "readlike" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jangler/readlike")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "027w8fvi50ksl57q0a7kb5zvmq8jxaawnviib1jdqw0p3igvm1j4"))))
- (build-system python-build-system)
+ (base32 "1mw8j8ads8hqdbz42siwpffi4wi5s33z9g14a5c2i7vxp8m68qc1"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/jangler/readlike")
(synopsis "GNU Readline-like line editing module")
(description