guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5a1cebdf797618174ff3e6b70aacbbf5981267fc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Oct 28 17:35:05 2025 +0000

    gnu: Add python-pytest-steps.
    
    * gnu/packages/python-check.scm (python-pytest-steps): New variable.
    
    Change-Id: I6d8f37fa8cc33963e84a6b756aedaf352b4248db
---
 gnu/packages/python-check.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 1dd28d5de4..d257929d28 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")

Reply via email to