diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-05 16:32:18 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:54 +0100 |
| commit | d3f38201d177791fcd135daeec7ffa477c0469e5 (patch) | |
| tree | e099a5f71c50862de37ab025f9cfe6a1d727fa2d /gnu/packages/python-web.scm | |
| parent | cb828a2d2c2d0bded1aed31f683862c29158b65b (diff) | |
gnu: python-html5lib: Switch to pyproject-build-system.
* gnu/packages/python-web.scm (python-html5lib):
[build-system]: Use pyproject.
[native-inputs]: Add python-setuptools.
Change-Id: If4df2b32c95a23252063e0826f27bc99fb2f5530
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index f97abf1e52f..9e0fe2dc43a 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -3288,25 +3288,25 @@ storage.") (name "python-html5lib") (version "1.1") (source - (origin - (method url-fetch) - (uri (pypi-uri "html5lib" version)) - (sha256 - (base32 - "0vqlhk0hgbsfkh7ybmby93xhlx8dq6pr5blf356ka3z2c41b9rdj")))) - (build-system python-build-system) + (origin + (method url-fetch) + (uri (pypi-uri "html5lib" version)) + (sha256 + (base32 "0vqlhk0hgbsfkh7ybmby93xhlx8dq6pr5blf356ka3z2c41b9rdj")))) + (build-system pyproject-build-system) + (arguments + '(#:tests? #f)) ;tests depent on dated pytest-expect + (native-inputs + (list python-setuptools)) (propagated-inputs - (list python-six python-webencodings + (list python-six + python-webencodings ;; Required by Calibre 5. python-chardet)) - (arguments - `(#:test-target "check")) - (home-page - "https://github.com/html5lib/html5lib-python") - (synopsis - "Python HTML parser based on the WHATWG HTML specification") + (home-page "https://github.com/html5lib/html5lib-python") + (synopsis "Python HTML parser based on the WHATWG HTML specification") (description - "Html5lib is an HTML parser based on the WHATWG HTML specification + "Html5lib is an HTML parser based on the WHATWG HTML specification and written in Python.") (license license:expat))) |
