diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 15:15:40 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 17:06:57 +0100 |
commit | 2e9cb4029b4e7e3ed0a56c17e7e8394a3fda57cf (patch) | |
tree | 922da35d6bbd22b95e3bb26c1c36ba23d1be275a | |
parent | cc9e90ac8fef2513aa5785e9991e75875fa5b44f (diff) |
gnu: python-anyio: Reduce closure size.
* gnu/packages/python-xyz.scm (python-anyio): Reduce closure size.
[propagated-inputs]: Remove python-contextvars and
python-typing-extensions.
[native-inputs]: Remove python-wheel.
Change-Id: I740b7e3fd1c3b89eb762729e04fe70c71ea50202
-rw-r--r-- | gnu/packages/python-xyz.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 90147fc2fc..f5dd0d24b4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -31968,10 +31968,8 @@ standard error channel (stderr) in your program.") " and not test_socket_options" " and not test_unretrieved_future_exception_server_crash")))))))) (propagated-inputs - (list python-contextvars - python-idna - python-sniffio - python-typing-extensions)) + (list python-idna + python-sniffio)) (native-inputs (list python-psutil python-pytest @@ -31980,8 +31978,7 @@ standard error channel (stderr) in your program.") python-setuptools-scm python-trio python-trustme - python-uvloop - python-wheel)) + python-uvloop)) (home-page "https://github.com/agronholm/anyio") (synopsis "Compatibility layer for multiple asynchronous event loops") (description |