guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add python-nose-random.


From: guix-commits
Subject: branch master updated: gnu: Add python-nose-random.
Date: Thu, 06 Feb 2020 16:15:04 -0500

This is an automated email from the git hooks/post-receive script.

vagrantc pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e68321a  gnu: Add python-nose-random.
e68321a is described below

commit e68321a641d8bafd18386792f2b2ce9a57e54ce3
Author: Vagrant Cascadian <address@hidden>
AuthorDate: Thu Feb 6 12:55:15 2020 -0800

    gnu: Add python-nose-random.
    
    * gnu/packages/check (python-nose-random): New variable.
---
 gnu/packages/check.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index f9eb350..fa65751 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2116,6 +2116,32 @@ JSON APIs with Behave.")
 (define-public python2-rednose
   (package-with-python2 python-rednose))
 
+(define-public python-nose-random
+  (package
+    (name "python-nose-random")
+    (version "1.0.0")
+    (source
+     (origin
+      (method git-fetch)
+      (uri (git-reference
+            (url "https://github.com/fzumstein/nose-random";)
+            (commit version)))
+      (file-name (git-file-name name version))
+      (sha256
+       (base32
+        "1dvip61r2frjv35mv6mmfjc07402z73pjbndfp3mhxyjn2zhksw2"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-nose" ,python-nose)))
+    (home-page "https://github.com/fzumstein/nose-random";)
+    (synopsis "Nose plugin to facilitate randomized unit testing with
+Python")
+    (description "Python nose-random is designed to facilitate
+Monte-Carlo style unit testing.  The idea is to improve testing by
+running your code against a large number of randomly generated input
+scenarios.")
+    (license license:expat)))
+
 (define-public python-nose-randomly
   (package
     (name "python-nose-randomly")



reply via email to

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