From 0cb2189ae6f472d01c6beffde069e52314d6f08d Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Thu, 20 Jan 2022 22:34:06 +0100 Subject: [PATCH v5 11/32] 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 bb24d3b40a..37f1166f06 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25570,6 +25570,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.34.0