~ruther/guix-local

183ca249db8bd91442c4e823343139f2f030c206 — Nicolas Graves 4 months ago 1fe4898
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>
1 files changed, 8 insertions(+), 4 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +8 -4
@@ 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