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:
parent
b000468b92
commit
937c5ff1ce
1 changed files with 9 additions and 7 deletions
|
@ -12127,26 +12127,28 @@ systems, as a command line tool, and as a Python library.")
|
||||||
(define-public python-bleach
|
(define-public python-bleach
|
||||||
(package
|
(package
|
||||||
(name "python-bleach")
|
(name "python-bleach")
|
||||||
(version "3.1.5")
|
(version "4.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "bleach" version))
|
(uri (pypi-uri "bleach" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0jqa8f1ni10cyf4h7sjpf8mbqlcbkyvmsnli77qrxdcxvc7m4k1w"))))
|
(base32 "1nkibazmw1ry4cfxs9qrkkidxdf2z1hh1b20xq1ahqdsgsrxh009"))))
|
||||||
(build-system python-build-system)
|
(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
|
(propagated-inputs
|
||||||
(list python-webencodings python-six))
|
(list python-packaging python-six python-webencodings))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-datrie python-genshi python-lxml python-pytest))
|
(list python-pytest))
|
||||||
(home-page "https://github.com/mozilla/bleach")
|
(home-page "https://github.com/mozilla/bleach")
|
||||||
(synopsis "Whitelist-based HTML-sanitizing tool")
|
(synopsis "Whitelist-based HTML-sanitizing tool")
|
||||||
(description "Bleach is an easy whitelist-based HTML-sanitizing tool.")
|
(description "Bleach is an easy whitelist-based HTML-sanitizing tool.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python2-bleach
|
|
||||||
(package-with-python2 python-bleach))
|
|
||||||
|
|
||||||
(define-public python-entrypoints
|
(define-public python-entrypoints
|
||||||
(package
|
(package
|
||||||
(name "python-entrypoints")
|
(name "python-entrypoints")
|
||||||
|
|
Reference in a new issue