guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: gnu: Add python-aiounittest.


From: guix-commits
Subject: 01/05: gnu: Add python-aiounittest.
Date: Mon, 30 Mar 2020 14:50:55 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 4edefc507594d81463ad257b8e0a6a824e2a7114
Author: Lars-Dominik Braun <address@hidden>
AuthorDate: Mon Mar 30 08:28:15 2020 +0200

    gnu: Add python-aiounittest.
    
    * gnu/packages/check.scm (python-aiounittest): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/check.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 1b60b99..c5a886e 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -30,6 +30,7 @@
 ;;; Copyright © 2018 Fis Trivial <address@hidden>
 ;;; Copyright © 2019 Pierre Langlois <address@hidden>
 ;;; Copyright © 2019 Chris Marusich <address@hidden>
+;;; Copyright © 2020 Lars-Dominik Braun <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2509,3 +2510,25 @@ system.  The code under test requires no modification to 
work with pyfakefs.")
 
 (define-public python2-pyfakefs
   (package-with-python2 python-pyfakefs))
+
+(define-public python-aiounittest
+  (package
+    (name "python-aiounittest")
+    (version "1.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "aiounittest" version))
+       (sha256
+        (base32
+         "1q4bhmi80smaa1lknvdna0sx3915naczlfna1fp435nf6cjyrjl1"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-coverage" ,python-coverage)
+       ("python-nose" ,python-nose)))
+    (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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]