summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-23 16:01:25 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-23 16:23:25 +0100
commit94bb5be20eea75a87b71a8efa97fe831797415f9 (patch)
treeca179b56f248e1156c2808fb0197168e72851617 /gnu/packages/python-web.scm
parent15d269010469375d4c18772bb80264c3faa790e4 (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.scm15
1 files changed, 10 insertions, 5 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 60c9fefa7c7..d8de1fe2e15 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10694,16 +10694,21 @@ comments. Trailing comma is also supported.")
10694(define-public python-html-text 10694(define-public python-html-text
10695 (package 10695 (package
10696 (name "python-html-text") 10696 (name "python-html-text")
10697 (version "0.5.2") 10697 (version "0.7.0")
10698 (source 10698 (source
10699 (origin 10699 (origin
10700 (method url-fetch) 10700 (method url-fetch)
10701 (uri (pypi-uri "html_text" version)) 10701 (uri (pypi-uri "html_text" version))
10702 (sha256 10702 (sha256
10703 (base32 "1v9x171l3bmyayc1144nrkn9410lp4lhlrrjii54j7b5f2xipmmg")))) 10703 (base32 "10lixghras86av966ha9piqfl1iscf7nffg69dmz13sxjh371jrx"))))
10704 (build-system python-build-system) 10704 (build-system pyproject-build-system)
10705 (native-inputs (list python-pytest)) 10705 (native-inputs
10706 (propagated-inputs (list python-lxml)) 10706 (list python-pytest
10707 python-setuptools
10708 python-wheel))
10709 (propagated-inputs
10710 (list python-lxml
10711 python-lxml-html-clean))
10707 (home-page "https://github.com/TeamHG-Memex/html-text") 10712 (home-page "https://github.com/TeamHG-Memex/html-text")
10708 (synopsis "Extract text from HTML") 10713 (synopsis "Extract text from HTML")
10709 (description "HTML to Text is a Python library for extract text from HTML. 10714 (description "HTML to Text is a Python library for extract text from HTML.