summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-03-15 01:52:42 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-04-10 13:23:48 +0100
commitb358552de255b69582218dd20979ddfe27dc1efc (patch)
tree8a4cce20fe46924742270072a9270a0e5431f4e3 /gnu
parent5e9e2ae100bf6780767ff3b8d8a727c5d8546cd5 (diff)
gnu: Add python-pytest-instafail.
* gnu/packages/python-check.scm (python-pytest-instafail): New variable. Change-Id: Ibf44422a99448a12de7b96b5d5d09a1142e42764 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-check.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index b4ef0566dea..c9708cae778 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3289,6 +3289,28 @@ import them in their actual tests to use them.")
3289requests to be replied to with user provided responses.") 3289requests to be replied to with user provided responses.")
3290 (license license:expat))) 3290 (license license:expat)))
3291 3291
3292(define-public python-pytest-instafail
3293 (package
3294 (name "python-pytest-instafail")
3295 (version "0.5.0")
3296 (source
3297 (origin
3298 (method git-fetch)
3299 (uri (git-reference
3300 (url "https://github.com/pytest-dev/pytest-instafail")
3301 (commit (string-append "v" version))))
3302 (file-name (git-file-name name version))
3303 (sha256
3304 (base32 "0dxlvvs08ln9y2d3bzs88c303xxgd0n18q9liy9kkdyhy54f70wa"))))
3305 (build-system pyproject-build-system)
3306 (propagated-inputs (list python-pytest))
3307 (native-inputs (list python-setuptools))
3308 (home-page "https://github.com/pytest-dev/pytest-instafail")
3309 (synopsis "Pytest plugin to show failures instantly")
3310 (description
3311 "This package provides a pytest plugin to show failures instantly.")
3312 (license license:bsd-3)))
3313
3292(define-public python-pytest-isort 3314(define-public python-pytest-isort
3293 (package 3315 (package
3294 (name "python-pytest-isort") 3316 (name "python-pytest-isort")