mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add python-nose-random.
* gnu/packages/check (python-nose-random): New variable.
This commit is contained in:
parent
b1daba942e
commit
e68321a641
1 changed files with 26 additions and 0 deletions
|
@ -2116,6 +2116,32 @@ (define-public python-rednose
|
||||||
(define-public python2-rednose
|
(define-public python2-rednose
|
||||||
(package-with-python2 python-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
|
(define-public python-nose-randomly
|
||||||
(package
|
(package
|
||||||
(name "python-nose-randomly")
|
(name "python-nose-randomly")
|
||||||
|
|
Loading…
Reference in a new issue