guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 183ca249db8bd91442c4e823343139f2f030c206
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Oct 27 22:22:02 2025 +0100
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 <[email protected]>
---
gnu/packages/python-xyz.scm | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ed681e5f3d..679e854331 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