guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 629266b3c77c349153197c773f89f790cdb01c66
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Mar 3 17:09:54 2026 +0900

    gnu: Add python-pytest-pretty.
    
    * gnu/packages/check.scm (python-pytest-pretty): New variable.
    
    Change-Id: Iecfed67d41683576d02feae4b32a84e38bcfc8a9
---
 gnu/packages/check.scm | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 35b5265a21..7b8a4112ee 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -36,7 +36,7 @@
 ;;; Copyright © 2020 Josh Marshall <[email protected]>
 ;;; Copyright © 2020 Vinicius Monego <[email protected]>
 ;;; Copyright © 2020 Tanguy Le Carrour <[email protected]>
-;;; Copyright © 2020-2025 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2020-2026 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2021 Hugo Lecomte <[email protected]>
 ;;; Copyright © 2022 Maxime Devos <[email protected]>
 ;;; Copyright © 2022, 2023 David Elsing <[email protected]>
@@ -533,6 +533,25 @@ unit testing.  Test output is in XML for automatic testing 
and GUI based for
 supervised tests.")
     (license license:lgpl2.1))) ; no copyright notices. LGPL2.1 is in the 
tarball
 
+(define-public python-pytest-pretty
+  (package
+    (name "python-pytest-pretty")
+    (version "1.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pytest_pretty" version))
+       (sha256
+        (base32 "1wrvqhn0r5vpa1xhj61lywms87hc9a6hgnvqmr03w00gwhdr5scp"))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-pytest python-rich))
+    (native-inputs (list python-hatchling))
+    (home-page "https://github.com/samuelcolvin/pytest-pretty";)
+    (synopsis "Pytest plugin to customize summary output")
+    (description "@code{pytest-pretty} is a Pytest plugin for customizing the
+appearance of the printed summary data.")
+    (license license:expat)))
+
 (define-public shunit2
   (package
     (name "shunit2")

Reply via email to