summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-20 14:30:45 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-20 15:01:51 +0000
commit7a1e5d15b47e3cabcb20db93f11c7fdf610dab33 (patch)
tree00428a94a43be366b16a8a96f788f40cbce19a8f /gnu/packages/python-check.scm
parent99d7b5f90aee73787883cfa084251880bdcaf91f (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.scm26
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
173HTTP requests.") 173HTTP requests.")
174 (license license:expat))) 174 (license license:expat)))
175 175
176(define-public python-aiounittest
177 (package
178 (name "python-aiounittest")
179 (version "1.5.0")
180 (source
181 (origin
182 (method git-fetch)
183 (uri (git-reference
184 (url "https://github.com/kwarunek/aiounittest.git")
185 (commit version)))
186 (file-name (git-file-name name version))
187 (sha256
188 (base32 "0266i5z589jh75hjzakvwcqx5shgv5zis8mr70qa209v7jjclzfd"))))
189 (build-system pyproject-build-system)
190 (native-inputs
191 (list python-pytest
192 python-setuptools))
193 (propagated-inputs
194 (list python-wrapt))
195 (home-page "https://github.com/kwarunek/aiounittest")
196 (synopsis "Test asyncio code more easily")
197 (description
198 "Aiounittest is a library that helps write tests using asynchronous code
199in Python (asyncio).")
200 (license license:expat)))
201
176(define-public python-allpairspy 202(define-public python-allpairspy
177 (package 203 (package
178 (name "python-allpairspy") 204 (name "python-allpairspy")