gnu: python2-html2text: Downgrade to 2019.8.11.

* gnu/packages/python-web.scm (python2-html2text): Don't inherit version and
source from PYTHON-HTML2TEXT.
This commit is contained in:
Marius Bakke 2020-11-20 11:24:57 +01:00
parent c8eb362477
commit cc05534946
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -485,7 +485,17 @@ (define-public python-html2text
(license license:gpl3+)))
(define-public python2-html2text
(package-with-python2 python-html2text))
(let ((base (package-with-python2 python-html2text)))
(package
(inherit base)
;; This is the last version with support for Python 2.
(version "2019.8.11")
(source (origin
(method url-fetch)
(uri (pypi-uri "html2text" version))
(sha256
(base32
"0ppgjplg06kmv9sj0x8p7acczcq2mcfgk1jdjwm4w5w40b0vj5pm")))))))
(define-public python-mechanicalsoup
(package