From 629266b3c77c349153197c773f89f790cdb01c66 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 3 Mar 2026 17:09:54 +0900 Subject: [PATCH] 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 ;;; Copyright © 2020 Vinicius Monego ;;; Copyright © 2020 Tanguy Le Carrour -;;; Copyright © 2020-2025 Maxim Cournoyer +;;; Copyright © 2020-2026 Maxim Cournoyer ;;; Copyright © 2021 Hugo Lecomte ;;; Copyright © 2022 Maxime Devos ;;; Copyright © 2022, 2023 David Elsing @@ -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")