mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-ddt.
* gnu/packages/python.scm (python-ddt, python2-ddt): New variables. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
1f42d824c1
commit
2f4623dbd8
1 changed files with 28 additions and 0 deletions
|
@ -12580,3 +12580,31 @@ (define-public python-rst2ansi
|
|||
"Python module dedicated to rendering RST (reStructuredText) documents
|
||||
to ansi-escaped strings suitable for display in a terminal.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-ddt
|
||||
(package
|
||||
(name "python-ddt")
|
||||
(version "1.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "ddt" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1c00ikkxr7lha97c81k938bzhgd4pbwamkjn0h4nkhr3xk00zp6n"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-mock" ,python-mock)
|
||||
("python-nose" ,python-nose)))
|
||||
(propagated-inputs
|
||||
`(("python-six" ,python-six)
|
||||
("python-pyyaml" ,python-pyyaml)))
|
||||
(home-page "https://github.com/txels/ddt")
|
||||
(synopsis "Data-Driven Tests")
|
||||
(description
|
||||
"DDT (Data-Driven Tests) allows you to multiply one test case by running
|
||||
it with different test data, and make it appear as multiple test cases.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python2-ddt
|
||||
(package-with-python2 python-ddt))
|
||||
|
|
Loading…
Reference in a new issue