gnu: Add python-pytest-lazy-fixture.
* gnu/packages/check.scm (python-pytest-lazy-fixture): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
af02327856
commit
bf2ffbcd77
@ -33,6 +33,7 @@
|
|||||||
;;; Copyright © 2020 Lars-Dominik Braun <ldb@leibniz-psychology.org>
|
;;; Copyright © 2020 Lars-Dominik Braun <ldb@leibniz-psychology.org>
|
||||||
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
||||||
;;; Copyright © 2020 Josh Marshall <joshua.r.marshall.1991@gmail.com>
|
;;; Copyright © 2020 Josh Marshall <joshua.r.marshall.1991@gmail.com>
|
||||||
|
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
@ -970,6 +971,33 @@ supports coverage of subprocesses.")
|
|||||||
(define-public python2-pytest-runner-2
|
(define-public python2-pytest-runner-2
|
||||||
(package-with-python2 python-pytest-runner-2))
|
(package-with-python2 python-pytest-runner-2))
|
||||||
|
|
||||||
|
(define-public python-pytest-lazy-fixture
|
||||||
|
(package
|
||||||
|
(name "python-pytest-lazy-fixture")
|
||||||
|
(version "0.6.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pytest-lazy-fixture" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1b0hmnsxw4s2wf9pks8dg6dfy5cx3zcbzs8517lfccxsfizhqz8f"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
;; Make the installed plugin discoverable by Pytest.
|
||||||
|
(add-installed-pythonpath inputs outputs)
|
||||||
|
(invoke "pytest" "-vv"))))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-pytest" ,python-pytest)))
|
||||||
|
(home-page "https://github.com/tvorog/pytest-lazy-fixture")
|
||||||
|
(synopsis "Use fixtures in @code{pytest.mark.parametrize}")
|
||||||
|
(description "This plugin helps to use fixtures in
|
||||||
|
@code{pytest.mark.parametrize}.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-pytest-mock
|
(define-public python-pytest-mock
|
||||||
(package
|
(package
|
||||||
(name "python-pytest-mock")
|
(name "python-pytest-mock")
|
||||||
|
Loading…
Reference in New Issue
Block a user