diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 15:16:12 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-17 08:59:32 +0100 |
commit | 88ae531be0d5652bd47c84caa75365ff4288a2c7 (patch) | |
tree | 416e52fd2009a6c2bd0b64da47bae4eb9ad1a90f /gnu/packages/python-xyz.scm | |
parent | bbf67a923ee9ab2d36f7be8cf5daa30140858450 (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 dc090f916c..ff5c163b5f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -35176,27 +35176,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") |