From f6aa994a740ab4bd7395cd0fcb427a7cb3fa83f5 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sun, 19 Dec 2021 00:29:10 +0000 Subject: gnu: Add python-pytest-celery. * gnu/packages/python-check.scm (python-pytest-celery): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/python-check.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'gnu/packages/python-check.scm') diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 2d015fd6d2..d2aa1c328f 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1330,6 +1330,28 @@ (define-public python-pytest-tornasync 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") -- cgit v1.2.3