summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-07-16 22:44:50 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-07-20 10:47:57 +0100
commit44b7d16075fed1d71ed6637a7bc0df17b4323abe (patch)
treec398fd3e7ba3c97b5a3aaddc4a3385310b0ee1ac /gnu/packages
parentdf9429cfb19ae350887516cb15a5f186fdd6d6f2 (diff)
gnu: Add python-pytest-loguru.
* gnu/packages/python-check.scm (python-pytest-loguru): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-check.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 2b9151d329c..fe71450d954 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3473,6 +3473,34 @@ isort.")
3473you can upload files and test FTP functionality.") 3473you can upload files and test FTP functionality.")
3474 (license license:expat))) 3474 (license license:expat)))
3475 3475
3476(define-public python-pytest-loguru
3477 (package
3478 (name "python-pytest-loguru")
3479 (version "0.4.1")
3480 (source
3481 (origin
3482 (method git-fetch)
3483 (uri (git-reference
3484 (url "https://github.com/mcarans/pytest-loguru")
3485 (commit version)))
3486 (file-name (git-file-name name version))
3487 (sha256
3488 (base32 "0jb8ps314dr5r755a3kv3ss3xybvcc1pf5zrircq9z2lr7jv3jp8"))))
3489 (build-system pyproject-build-system)
3490 (native-inputs
3491 (list python-hatch-vcs
3492 python-hatchling
3493 python-pytest-bootstrap))
3494 (propagated-inputs
3495 (list python-loguru))
3496 (home-page "https://github.com/mcarans/pytest-loguru")
3497 (synopsis "Pytest Loguru plugin")
3498 (description
3499 "This package provides a pytest plugin to add support for
3500@url{https://loguru.readthedocs.io/en/stable/, Loguru} to Pytest's caplog
3501fixture.")
3502 (license license:expat)))
3503
3476(define-public python-pytest-metadata 3504(define-public python-pytest-metadata
3477 (package 3505 (package
3478 (name "python-pytest-metadata") 3506 (name "python-pytest-metadata")