~ruther/guix-local

5a1cebdf797618174ff3e6b70aacbbf5981267fc — Sharlatan Hellseher 4 months ago 414b5be
gnu: Add python-pytest-steps.

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

Change-Id: I6d8f37fa8cc33963e84a6b756aedaf352b4248db
1 files changed, 27 insertions(+), 0 deletions(-)

M gnu/packages/python-check.scm
M gnu/packages/python-check.scm => gnu/packages/python-check.scm +27 -0
@@ 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")