~ruther/guix-local

1d7a7decc7e7a1bb44b4d2cc42793fdfbd8fe24e — Nicolas Graves 6 months ago ae3fbf2
gnu: python-mwparserfromhell: Switch to pyproject.

* gnu/packages/python-web.scm (python-mwparserfromhell):
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools-next. Remove
python-pytest-runner.

Change-Id: I9bab5b8ef4875d69521d22c07131053ea72b69e4
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 8 insertions(+), 6 deletions(-)

M gnu/packages/python-web.scm
M gnu/packages/python-web.scm => gnu/packages/python-web.scm +8 -6
@@ 10549,13 10549,15 @@ real-life projects with legacy data and diverse storage providers.")
    (version "0.6.3")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "mwparserfromhell" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/earwig/mwparserfromhell")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0zh9zaqbac18s7mivqk8am9xw97lfkgcj9hhxj0d4208pkqpkmqs"))))
    (build-system python-build-system)
    (native-inputs
     (list python-pytest python-pytest-runner))
        (base32 "1h8xih37mw7lkxsdrkgp9lwl25zr3ldsx5hh0rd5g2sgfrf3yyyg"))))
    (build-system pyproject-build-system)
    (native-inputs (list python-pytest python-setuptools-next))
    (home-page "https://github.com/earwig/mwparserfromhell")
    (synopsis "Python parser for MediaWiki wikicode")
    (description