summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-28 17:35:05 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-28 17:46:26 +0000
commit5a1cebdf797618174ff3e6b70aacbbf5981267fc (patch)
tree6c26b1b5f552b6cf18236be06cb3f1b8f23ff768 /gnu/packages/python-check.scm
parent414b5be69dafd0caeeef3168a448bead6ca65e56 (diff)
gnu: Add python-pytest-steps.
* gnu/packages/python-check.scm (python-pytest-steps): New variable. Change-Id: I6d8f37fa8cc33963e84a6b756aedaf352b4248db
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 1dd28d5de41..d257929d286 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3514,6 +3514,33 @@ unexpectedly.")
through Python's socket interface")
(license license:expat)))
+(define-public python-pytest-steps
+ (package
+ (name "python-pytest-steps")
+ (version "1.8.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-steps" version))
+ (sha256
+ (base32 "05r2ch7191saj7sw6d47bfa5vnyyj157dl8hvlcc78xx6jyxy46j"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;XXX: cycles with python-pytest-harvest
+ (native-inputs
+ (list python-pytest-bootstrap
+ python-setuptools
+ python-setuptools-scm))
+ (propagated-inputs
+ (list python-makefun
+ python-wrapt))
+ (home-page "https://github.com/smarie/python-pytest-steps")
+ (synopsis "Pytest plugin to create step-wise / incremental tests")
+ (description
+ "This package implements a functionality to share a state / intermediate
+ results across test steps.")
+ (license license:bsd-3)))
+
(define-public python-pytest-subprocess
(package
(name "python-pytest-subprocess")