diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-20 14:30:45 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-20 15:01:51 +0000 |
| commit | 7a1e5d15b47e3cabcb20db93f11c7fdf610dab33 (patch) | |
| tree | 00428a94a43be366b16a8a96f788f40cbce19a8f /gnu/packages/python-check.scm | |
| parent | 99d7b5f90aee73787883cfa084251880bdcaf91f (diff) | |
gnu: python-aiounittest: Move to python-check.
* gnu/packages/check.scm (python-aiounittest): Move from here ...
* gnu/packages/python-check.scm: ... to here.
Change-Id: I173f7269330d732456ec993373e707eab036d354
Diffstat (limited to 'gnu/packages/python-check.scm')
| -rw-r--r-- | gnu/packages/python-check.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 7f5d9f26133..5dee2afe1fc 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -173,6 +173,32 @@ The purpose of this package is to provide an easy way to test asynchronous HTTP requests.") (license license:expat))) +(define-public python-aiounittest + (package + (name "python-aiounittest") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kwarunek/aiounittest.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0266i5z589jh75hjzakvwcqx5shgv5zis8mr70qa209v7jjclzfd")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools)) + (propagated-inputs + (list python-wrapt)) + (home-page "https://github.com/kwarunek/aiounittest") + (synopsis "Test asyncio code more easily") + (description + "Aiounittest is a library that helps write tests using asynchronous code +in Python (asyncio).") + (license license:expat))) + (define-public python-allpairspy (package (name "python-allpairspy") |
