diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-23 16:01:25 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-23 16:23:25 +0100 |
commit | 94bb5be20eea75a87b71a8efa97fe831797415f9 (patch) | |
tree | ca179b56f248e1156c2808fb0197168e72851617 /gnu/packages/python-web.scm | |
parent | 15d269010469375d4c18772bb80264c3faa790e4 (diff) |
gnu: python-html-text: Update to 0.7.0.
* gnu/packages/python-web.scm (python-html-text): Update to 0.7.0.
[build-system]: Use pyproject.
[propagated-inputs]: Add python-lxml-html-clean.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: Ib70f586460b4bc392f19f2a0e079bed69fc9bd97
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 60c9fefa7c..d8de1fe2e1 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -10694,16 +10694,21 @@ comments. Trailing comma is also supported.") (define-public python-html-text (package (name "python-html-text") - (version "0.5.2") + (version "0.7.0") (source (origin (method url-fetch) (uri (pypi-uri "html_text" version)) (sha256 - (base32 "1v9x171l3bmyayc1144nrkn9410lp4lhlrrjii54j7b5f2xipmmg")))) - (build-system python-build-system) - (native-inputs (list python-pytest)) - (propagated-inputs (list python-lxml)) + (base32 "10lixghras86av966ha9piqfl1iscf7nffg69dmz13sxjh371jrx")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-wheel)) + (propagated-inputs + (list python-lxml + python-lxml-html-clean)) (home-page "https://github.com/TeamHG-Memex/html-text") (synopsis "Extract text from HTML") (description "HTML to Text is a Python library for extract text from HTML. |