summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-check.scm')
-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")