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>
This commit is contained in:
Nicolas Graves 2025-09-06 16:02:23 +02:00 committed by Sharlatan Hellseher
parent ae3fbf21ca
commit 1d7a7decc7
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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