3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: python-bleach: Update to 4.1.0.

* gnu/packages/python-xyz.scm (python-bleach): Update to 4.1.0.
[arguments]: Replace check phase.
[propagated-inputs]: Add PYTHON-PACKAGING.
[native-inputs]: Remove PYTHON-DATRIE, PYTHON-GENSHI, and PYTHON-LXML.
(python2-bleach): Remove variable.
This commit is contained in:
Marius Bakke 2022-01-12 00:34:52 +01:00
parent b000468b92
commit 937c5ff1ce
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -12127,26 +12127,28 @@ systems, as a command line tool, and as a Python library.")
(define-public python-bleach
(package
(name "python-bleach")
(version "3.1.5")
(version "4.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "bleach" version))
(sha256
(base32 "0jqa8f1ni10cyf4h7sjpf8mbqlcbkyvmsnli77qrxdcxvc7m4k1w"))))
(base32 "1nkibazmw1ry4cfxs9qrkkidxdf2z1hh1b20xq1ahqdsgsrxh009"))))
(build-system python-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests? (invoke "pytest" "-vv")))))))
(propagated-inputs
(list python-webencodings python-six))
(list python-packaging python-six python-webencodings))
(native-inputs
(list python-datrie python-genshi python-lxml python-pytest))
(list python-pytest))
(home-page "https://github.com/mozilla/bleach")
(synopsis "Whitelist-based HTML-sanitizing tool")
(description "Bleach is an easy whitelist-based HTML-sanitizing tool.")
(license license:asl2.0)))
(define-public python2-bleach
(package-with-python2 python-bleach))
(define-public python-entrypoints
(package
(name "python-entrypoints")