diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 15:16:12 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-23 16:58:43 +0100 |
commit | b458b70c73d6241711bb290c11950c1a6be10024 (patch) | |
tree | de94609021f3b25ef1a3bf30cec2b398c817b35a /gnu/packages/python-xyz.scm | |
parent | b8c52e29e61bbea0b26a991a3e8b645f569ce4fc (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 d8ce51a626..dfa5bb9f1e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -35106,27 +35106,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") |