guix_mirror_bot pushed a commit to branch astro-update
in repository guix.

commit be3f223ca6367dfeacfa61c5bdbc77dac0b67060
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 16 22:44:50 2026 +0100

    gnu: Add python-pytest-loguru.
    
    * gnu/packages/python-check.scm (python-pytest-loguru): New variable.
---
 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 2b9151d329..c034f75936 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3473,6 +3473,33 @@ isort.")
 you can upload files and test FTP functionality.")
     (license license:expat)))
 
+(define-public python-pytest-loguru
+  (package
+    (name "python-pytest-loguru")
+    (version "0.4.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/mcarans/pytest-loguru";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0jb8ps314dr5r755a3kv3ss3xybvcc1pf5zrircq9z2lr7jv3jp8"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-hatch-vcs
+           python-hatchling
+           python-pytest-bootstrap))
+    (propagated-inputs
+     (list python-loguru))
+    (home-page "https://github.com/mcarans/pytest-loguru";)
+    (synopsis "Pytest Loguru plugin")
+    (description
+     "This package provides a pytest plugin to add support for loguru to
+pytest's caplog fixture.")
+    (license license:expat)))
+
 (define-public python-pytest-metadata
   (package
     (name "python-pytest-metadata")

Reply via email to