diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-04-04 21:17:06 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:29 +0200 |
commit | c4bc6cf49f0b77f5ca2e97d8fa00b61cd80c1dd4 (patch) | |
tree | 46fbe9a7bb5dd489a95f77af66584455655d876f | |
parent | d7817735b259708591cf3696b2286b7872d9b5c4 (diff) | |
download | guix-c4bc6cf49f0b77f5ca2e97d8fa00b61cd80c1dd4.tar.gz guix-c4bc6cf49f0b77f5ca2e97d8fa00b61cd80c1dd4.zip |
gnu: Remove python-cookies.
This is a leaf package in python, broken and undevelopped for 10 years.
* gnu/packages/python-web.scm (python-cookies): Delete variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/python-web.scm | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index a8fe9e1a73..e4c0e008e6 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5531,28 +5531,6 @@ upload, and reCAPTCHA.") for overriding static files.") (license license:gpl3+))) -(define-public python-cookies - (package - (name "python-cookies") - (version "2.2.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "cookies" version)) - (sha256 - (base32 - "13pfndz8vbk4p2a44cfbjsypjarkrall71pgc97glk5fiiw9idnn")))) - (build-system python-build-system) - (arguments - `(;; test are broken: https://gitlab.com/sashahart/cookies/issues/3 - #:tests? #f)) - (native-inputs - (list python-pytest)) - (synopsis "HTTP cookie parser and renderer") - (description "A RFC 6265-compliant HTTP cookie parser and renderer in -Python.") - (home-page "https://gitlab.com/sashahart/cookies") - (license license:expat))) - (define-public python-responses (package (name "python-responses") |