diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-17 20:38:58 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:38:03 +0100 |
commit | 1e490f2eb1c4faf8cb6cf764b57ecbedebe5d69c (patch) | |
tree | e741667c5605f5ed1b2e1150aade8539acbc681e | |
parent | 6c372c2122ac49866ca2ccf0423429f1dc1705fb (diff) |
gnu: Add python-pytest-asyncio-0.21.
* gnu/packages/check.scm (python-pytest-asyncio-0.21): New variable.
Change-Id: I00a1c54acbe774965be013462906d4616252dc99
-rw-r--r-- | gnu/packages/check.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 588336794c..818119a8d7 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2539,6 +2539,23 @@ to make testing async code easier.") (sha256 (base32 "1lz4h8y6m6hxnsl7kqh0rjxqp5q2wc2m5gd88371rikd7ari16vm")))))) +(define-public python-pytest-asyncio-0.21 + (package + (inherit python-pytest-asyncio) + (version "0.21.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest_asyncio" version)) + (sha256 + (base32 "0iag2lmglfajiasxi3dr2110gq0nxc5paq6hp4kb751b4gy3hxyn")))) + (native-inputs + (list python-flaky + python-pytest-trio + python-setuptools-scm + python-setuptools + python-wheel)))) + (define-public python-cov-core (package (name "python-cov-core") |