From 183ca249db8bd91442c4e823343139f2f030c206 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Mon, 27 Oct 2025 22:22:02 +0100 Subject: [PATCH] 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 --- 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 ed681e5f3d9ddea9f35f7ed29a19c9a28144a39e..679e854331a4043f521fe05d624d44ed4052814d 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