guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit f550d0e12c544a7dc72c397a12396efae8042abc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Sep 19 08:08:21 2025 +0100

    gnu: python-bleach: Update to 6.2.0.
    
    * gnu/packages/python-xyz.scm (python-bleach): Update to 6.2.0.
    [propagated-inputs]: Remove python-tinycss2; add python-webencodings.
    [native-inputs]: Remove python-wheel.
    
    Change-Id: I246a5b8ffcafc5c83ff9bb3e24fcc87043170f61
---
 gnu/packages/python-xyz.scm | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8b3f439bf6..29ecb61957 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19287,13 +19287,13 @@ systems, as a command line tool, and as a Python 
library.")
 (define-public python-bleach
   (package
     (name "python-bleach")
-    (version "6.0.0")
+    (version "6.2.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "bleach" version))
        (sha256
-        (base32 "054lp46iymchq3np0nar3k2h4da3wq4rzw652kdxh1syb70qa6hs"))
+        (base32 "07wrbzlmd6x63dz7lcdih9c4xkn79inimv6kh3yrk9dq310qjghj"))
        (snippet
         #~(begin
             (use-modules (guix build utils))
@@ -19301,8 +19301,12 @@ systems, as a command line tool, and as a Python 
library.")
               (("bleach\\._vendor\\.html5lib") "html5lib"))
             (delete-file-recursively "bleach/_vendor/html5lib")))))
     (build-system pyproject-build-system)
-    (propagated-inputs (list python-html5lib python-tinycss2))
-    (native-inputs (list python-pytest python-setuptools python-wheel))
+    (native-inputs
+     (list python-pytest
+           python-setuptools))
+    (propagated-inputs
+     (list python-html5lib
+           python-webencodings))
     (home-page "https://github.com/mozilla/bleach";)
     (synopsis "Whitelist-based HTML-sanitizing tool")
     (description "Bleach is an easy whitelist-based HTML-sanitizing tool.")

Reply via email to