summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2025-03-18 20:42:08 +0100
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:18 +0200
commita330b7acff992ee80bce800f3248d3c6fe641a67 (patch)
treea025440ee1c36a93cfb78b3e86131cde33167d4b
parenteb70b7c57f2884c24ee5068853559a62bc2f7e53 (diff)
gnu: Remove python-anyio/without-dataclasses.
* gnu/packages/python-xyz.scm (python-anyio/without-dataclasses): Remove variable. * gnu/packages/jupyter.scm (python-jupyter-server)[propagated-inputs]: Replace python-anyio/without-dataclasses with python-anyio. Change-Id: I81433128fc3ed2f098bd84f1f89555e9dda62d6d
-rw-r--r--gnu/packages/jupyter.scm2
-rw-r--r--gnu/packages/python-xyz.scm11
2 files changed, 1 insertions, 12 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 6c2f549583..778bb01bd8 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -594,7 +594,7 @@ JavaScript build steps.")
(setenv "PATH"
(string-append #$output "/bin:" (getenv "PATH"))))))))
(propagated-inputs
- (list python-anyio/without-dataclasses
+ (list python-anyio
python-argon2-cffi
python-jinja2
python-jupyter-client
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fdc40a0610..0b82e82e9d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32645,17 +32645,6 @@ concurrency on top of asyncio, and works in harmony with the native SC of trio
itself.")
(license license:expat)))
-;; TODO: This will become the default on the python-team branch. Dataclasses
-;; is part of Python.
-(define-public python-anyio/without-dataclasses
- (package
- (inherit python-anyio)
- (propagated-inputs
- (list python-contextvars
- python-idna
- python-sniffio
- python-typing-extensions))))
-
(define-public python-argh
;; There are 21 commits since the latest release containing important
;; improvements.