mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 19:40:46 +02:00
gnu: Add python-pytest-celery.
* gnu/packages/python-check.scm (python-pytest-celery): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
51e26b297c
commit
f6aa994a74
1 changed files with 22 additions and 0 deletions
|
@ -1330,6 +1330,28 @@ fixtures for testing Tornado (version 5.0 or newer) apps and easy handling of
|
|||
plain (undecoratored) native coroutine tests.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pytest-celery
|
||||
(package
|
||||
(name "python-pytest-celery")
|
||||
(version "0.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pytest-celery" version))
|
||||
(sha256
|
||||
(base32 "01pli108qqiiyrn8qsqqabcpazrzj27r7cji9wgglsk76by61l6g"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests and circular dependency on python-celery
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'sanity-check)))) ; checks for celery
|
||||
(home-page "https://github.com/graingert/pytest-celery")
|
||||
(synopsis "Shim pytest plugin to enable @code{celery.contrib.pytest}")
|
||||
(description
|
||||
"This package provides a shim Pytest plugin to enable a Celery marker.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-pytest-env
|
||||
(package
|
||||
(name "python-pytest-env")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue