From 3405f00ad85e4411ddf0df88994ea48bfe9cfcd9 Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Thu, 20 Jan 2022 22:32:09 +0100 Subject: [PATCH v4 08/18] gnu: Add python-pytest-logging. * gnu/packages/python-xyz.scm (python-pytest-logging): New variable. --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 660d6087c1..5753101a2b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25509,6 +25509,27 @@ (define-public python-makefun @samp{functools}, and created mainly to cover some of their limitations.") (license license:bsd-3))) +(define-public python-pytest-logging + (package + (name "python-pytest-logging") + (version "2015.11.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-logging" version)) + (sha256 + (base32 + "15n8fyxvvwmk982vj0m9yl76hn7pp4qqljfmxarbgahqrxgciiff")))) + (build-system python-build-system) + (propagated-inputs (list python-pytest)) + (home-page "https://github.com/saltstack/pytest-logging") + (synopsis + "Logging with a @code{py.test} flag") + (description + "This package configures logging and allows tweaking the log level with a +@code{py.test} flag.") + (license license:asl2.0))) + (define-public python-frozendict (package (name "python-frozendict") -- 2.34.0