diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 15:16:12 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-08 16:50:05 +0100 |
commit | 067c75d466160b6d3de19d7d328d556def27b32e (patch) | |
tree | cc5995485b05e71a6331f88c05b4dc2fc25371ce /gnu/packages/python-xyz.scm | |
parent | 3dc7613a31171b48b56c05a377b0ceaf60af6152 (diff) |
gnu: Remove python-contextvars.
Note: This package implements a backport of Python 3.7 contextvars
module (see PEP 567) for Python 3.6.
Not maintained sicne 2019 has no users in Guix.
* gnu/packages/python-xyz.scm (python-contextvars): Delete variable.
Change-Id: I955c902d3afaa8044226438f2303b95e94ad1764
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 13a59d9e34..e4bd53e657 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -35150,27 +35150,6 @@ process.") (home-page "https://gamera.informatik.hsnr.de/") (license license:gpl2+))) -(define-public python-contextvars - (package - (name "python-contextvars") - (version "2.4") - (source - (origin - (method url-fetch) - (uri (pypi-uri "contextvars" version)) - (sha256 - (base32 - "17n3w8c20kgkgc6khaafdhhlcdj4bzman4paxqsl7harma59137k")))) - (build-system python-build-system) - (propagated-inputs - (list python-immutables)) - (home-page - "https://github.com/MagicStack/contextvars") - (synopsis "PEP 567 Backport") - (description "This package implements a backport of Python 3.7 -@code{contextvars} module (see PEP 567) for Python 3.6.") - (license license:asl2.0))) - (define-public python-aiofiles (package (name "python-aiofiles") |