gnu: Add python-html2text, python2-html2text.
authorBrendan Tildesley <mail@brendan.scot>
Fri, 3 May 2019 16:42:15 +0000 (02:42 +1000)
committerDanny Milosavljevic <dannym@scratchpost.org>
Sun, 5 May 2019 12:44:20 +0000 (14:44 +0200)
* gnu/packages/python-web.scm (python-html2text): New variable.
(python2-html2text): New variable.

Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
gnu/packages/python-web.scm

index 37da0fd..839d444 100644 (file)
@@ -299,6 +299,28 @@ other HTTP libraries.")
 (define-public python2-httplib2
   (package-with-python2 python-httplib2))
 
+(define-public python-html2text
+  (package
+    (name "python-html2text")
+    (version "2018.1.9")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "html2text" version))
+       (sha256
+        (base32
+         "1m6d7ciq30adc3d1n8g6r46072n7q8kdy039pqvnnmp763xi8xb2"))))
+    (build-system python-build-system)
+    (home-page "https://pypi.org/project/html2text/")
+    (synopsis "Convert HTML into plain text")
+    (description "html2text takes HTML and converts it into plain ASCII text
+which is also valid markdown.  html2text was originally written by Aaron
+Swartz.")
+    (license license:gpl3+)))
+
+(define-public python2-html2text
+  (package-with-python2 python-html2text))
+
 (define-public python-mechanicalsoup
   (package
     (name "python-mechanicalsoup")