From 1014887ed2f54ba2f856f8e5313b6427c4718753 Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Thu, 20 Jan 2022 22:32:09 +0100 Subject: [PATCH 08/18] gnu: Add python-pytest-logging. * gnu/packages/python-xyz.scm (python-pytest-logging): New variable. --- gnu/packages/python-xyz.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f09f4abf57..6522026717 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28749,3 +28749,22 @@ (define-public python-makefun the signature of your choice. It was largely inspired by @samp{decorator} and @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 + "Configures logging and allows tweaking the log level with a py.test flag") + (description + "Configures logging and allows tweaking the log level with a py.test flag.") + (license license:asl2.0))) -- 2.34.0