mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add python-case.
This is required to update python-amqp and python-kombu, as well as adding python-vine. * gnu/packages/python.scm (python-case): New variable.
This commit is contained in:
parent
053f3d4857
commit
679c979f25
1 changed files with 26 additions and 0 deletions
|
@ -1071,6 +1071,32 @@ (define-public python-capturer
|
||||||
(define-public python2-capturer
|
(define-public python2-capturer
|
||||||
(package-with-python2 python-capturer))
|
(package-with-python2 python-capturer))
|
||||||
|
|
||||||
|
(define-public python-case
|
||||||
|
(package
|
||||||
|
(name "python-case")
|
||||||
|
(version "1.5.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "case" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1cagg06vfph864s6l5jb0zqliwxh647bki8j6lf4a4qrv40jnhs8"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-mock" ,python-mock)
|
||||||
|
("python-nose" ,python-nose)
|
||||||
|
("python-six" ,python-six)
|
||||||
|
("python-unittest2" ,python-unittest2)))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-coverage" ,python-coverage)))
|
||||||
|
(home-page "https://github.com/celery/case")
|
||||||
|
(synopsis "Unittest utilities and convenience methods")
|
||||||
|
(description
|
||||||
|
"The @code{case} package provides utilities on top of unittest, including
|
||||||
|
some helpful Python 2 compatibility convenience methods.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-verboselogs
|
(define-public python-verboselogs
|
||||||
(package
|
(package
|
||||||
(name "python-verboselogs")
|
(name "python-verboselogs")
|
||||||
|
|
Loading…
Reference in a new issue