diff options
| -rw-r--r-- | gnu/packages/python-xyz.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 769ab8a337..4fb19cb849 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -31422,6 +31422,17 @@ 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. |
