~ruther/guix-local

b8c7432bf08112056cce9acdb3cb578ac17d067a — Sharlatan Hellseher 5 months ago 2fd304e
gnu: python-sre-yield: Switch to pyproject.

* gnu/packages/python-xyz.scm (python-sre-yield)[build-system]: Switch
to pyproject-build-system.
[arguments] <test-backend>: Use 'unittest.
[native-inputs]: Remove python-nose; add python-setuptools.

Change-Id: I9a2165b6058f6d8150798169d4c67fed5a66043b
1 files changed, 5 insertions(+), 4 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +5 -4
@@ 35247,10 35247,11 @@ a port of the chalk package for javascript.")
       (method url-fetch)
       (uri (pypi-uri "sre_yield" version))
       (sha256
        (base32
         "12kv3mvdr22g2v9wfr5aabh1f58s817dbh8mrlfzxzxs7hm1lkz9"))))
    (build-system python-build-system)
    (native-inputs (list python-nose))
        (base32 "12kv3mvdr22g2v9wfr5aabh1f58s817dbh8mrlfzxzxs7hm1lkz9"))))
    (build-system pyproject-build-system)
    (arguments
     (list #:test-backend #~'unittest))
    (native-inputs (list python-setuptools))
    (home-page "https://github.com/google/sre_yield")
    (synopsis "Expands a regular expression to its possible matches")
    (description