summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-24 19:39:10 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:40 +0100
commit1021218d0fbadee0cfa0df4514688af157feac97 (patch)
tree8d9fe9f6b3294d8c9d0c5aa16d144523f0946e9f /gnu/packages/python-xyz.scm
parent541812b7c0b8a6ac7924f8b53779ada75b880c2a (diff)
gnu: Remove python-shellescape.
* gnu/packages/python-xyz.scm (python-shellescape): Delete variable. Fixes: guix/guix#5107 Change-Id: I8035154a9efa76e0b7c3fb3297d1bf922224332f
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm36
1 files changed, 0 insertions, 36 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4fa88162be8..fbfbf175b0c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24891,42 +24891,6 @@ from the archive), or for externally identiyfing sub-resources referenced by
hypermedia formats.")
(license license:asl2.0)))
-(define-public python-shellescape
- (package
- (name "python-shellescape")
- (version "3.8.1")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/chrissimpkins/shellescape")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0wzccxk139qx1lb2g70f5b2yh9zq15nr2mgvqdbfabg5zm0vf1qw"))))
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? inputs outputs #:allow-other-keys)
- (when tests?
- (add-installed-pythonpath inputs outputs)
- (invoke "python" "tests/test_shellescape.py"))
- #t)))))
- (native-inputs
- (list python-pytest))
- (home-page "https://github.com/chrissimpkins/shellescape")
- (synopsis
- "Shell escape a string to safely use it as a token in a shell command")
- (description
- "The shellescape Python module defines the @code{shellescape.quote()}
- function that returns a shell-escaped version of a Python string. This is a
- backport of the @code{shlex.quote()} function from Python 3.8 that makes it
- accessible to users of Python 3 versions < 3.3 and all Python 2.x versions.")
- (license license:expat)))
-
;; XXX: Project has no updates since 2019, consider to remove when nothing
;; depends on it in the next refresh cycle.
;; See: <https://github.com/pipermerriam/flex/issues/237>.