~ruther/guix-local

1305fc004a7d150f3dc6647343d9d8f0d3bc4652 — Sharlatan Hellseher 1 year, 7 months ago c5a45b3
gnu: Add python-pytest-lazy-fixtures.

* gnu/packages/check.scm (python-pytest-lazy-fixtures): New variable.

Change-Id: I366ede16bf72f99b38b1edc43535a2c969822787
1 files changed, 23 insertions(+), 0 deletions(-)

M gnu/packages/check.scm
M gnu/packages/check.scm => gnu/packages/check.scm +23 -0
@@ 2002,6 2002,29 @@ Python's @code{random.seed}.")
@code{pytest.mark.parametrize}.")
    (license license:expat)))

(define-public python-pytest-lazy-fixtures
  (package
    (name "python-pytest-lazy-fixtures")
    (version "1.1.1")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "pytest_lazy_fixtures" version))
       (sha256
        (base32 "1v819n9jrgf0rk2fidn6fkdzz68r4jin94lvy9fbb9gf546iymhc"))))
    (native-inputs
     (list python-poetry-core))
    (propagated-inputs
     (list python-pytest))
    (build-system pyproject-build-system)
    (home-page "https://github.com/dev-petrov/pytest-lazy-fixtures")
    (synopsis "Use fixtures in @code{pytest.mark.parametrize}")
    (description
     "This plugin helps to use fixtures in @code{pytest.mark.parametrize},
inspied by @url{https://github.com/TvoroG/pytest-lazy-fixture,
pytest-lazy-fixture}.")
    (license license:expat)))

(define-public python-pytest-mock
  (package
    (name "python-pytest-mock")