From a7988b3ff6826ccf5622d973e484e3f80263eff6 Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Thu, 20 Jan 2022 22:34:06 +0100 Subject: [PATCH v6 11/28] gnu: Add a test-less python-pytest-steps. * gnu/packages/python-xyz.scm (python-pytest-steps-minimal): New variable. --- gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7ddba93891..9a6c2429f4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27297,6 +27297,30 @@ (define python-pytest-harvest-minimal at the end of the session, e.g. for applicative benchmarking purposes.") (license license:bsd-3))) +(define python-pytest-steps-minimal + (package + (name "python-pytest-steps-minimal") + (version "1.8.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-steps" version)) + (sha256 + (base32 + "05r2ch7191saj7sw6d47bfa5vnyyj157dl8hvlcc78xx6jyxy46j")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) + (propagated-inputs (list python-makefun python-wrapt python-tabulate + python-pandas)) + (native-inputs (list python-pytest python-pytest-runner + python-setuptools-scm)) + (home-page "https://github.com/smarie/python-pytest-steps") + (synopsis "Create step-wise / incremental tests in pytest") + (description "This package provides support for step-wise / incremental +tests in pytest.") + (license license:bsd-3))) + (define-public python-frozendict (package (name "python-frozendict") -- 2.36.1