summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm38
1 files changed, 0 insertions, 38 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b479830bacf..fb1894b8b87 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18101,44 +18101,6 @@ before they're staged, and can also be used with other version control
systems, as a command line tool, and as a Python library.")
(license license:isc)))
-(define-public python-bleach
- (package
- (name "python-bleach")
- (version "6.3.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/mozilla/bleach")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "02abk9ixn010sqpbdsd7nxms0gv4prwv6d3nplb8giq85lpn1kkb"))
- (snippet
- #~(begin
- (use-modules (guix build utils))
- (substitute* (find-files "." "\\.py$")
- (("bleach\\._vendor\\.html5lib") "html5lib"))
- (delete-file-recursively "bleach/_vendor/html5lib")))))
- (build-system pyproject-build-system)
- (arguments
- (list
- ;; tests: 448 passed, 1 deselected, 3 xfailed
- #:test-flags
- #~(list (string-append "--deselect=tests/test_clean.py::"
- "test_self_closing_tags_self_close[wbr]"))))
- (native-inputs
- (list python-pytest
- python-setuptools))
- (propagated-inputs
- (list python-html5lib
- python-tinycss2
- 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.")
- (license license:asl2.0)))
-
(define-public python-entrypoints
(package
(name "python-entrypoints")