From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52873) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gWc8J-0005xJ-J2 for guix-patches@gnu.org; Tue, 11 Dec 2018 02:07:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gWc8H-00024h-2U for guix-patches@gnu.org; Tue, 11 Dec 2018 02:07:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:38446) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gWc8G-00024Z-SC for guix-patches@gnu.org; Tue, 11 Dec 2018 02:07:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gWc8F-00077U-0S for guix-patches@gnu.org; Tue, 11 Dec 2018 02:07:04 -0500 Subject: [bug#33702] [PATCH 1/7] gnu: Add python-pytest-sugar. References: <87bm5sft83.fsf@cbaines.net> In-Reply-To: <87bm5sft83.fsf@cbaines.net> Resent-Message-ID: From: Christopher Baines Date: Tue, 11 Dec 2018 08:06:01 +0100 Message-Id: <20181211070607.20548-1-mail@cbaines.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33702@debbugs.gnu.org This is required to update python-amqp and python-kombu. * gnu/packages/check.scm (check): New variable. --- gnu/packages/check.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 937e4e094c..5bf849d666 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1414,6 +1414,30 @@ normally the case.") (define-public python2-pytest-subtesthack (package-with-python2 python-pytest-subtesthack)) +(define-public python-pytest-sugar + (package + (name "python-pytest-sugar") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-sugar" version)) + (sha256 + (base32 + "1asq7yc4g8bx2sn7yy974mhc9ywvaihasjab4inkirdwn9s7mn7w")))) + (build-system python-build-system) + (propagated-inputs + `(("python-packaging" ,python-packaging) + ("python-pytest" ,python-pytest) + ("python-termcolor" ,python-termcolor))) + (home-page "https://pivotfinland.com/pytest-sugar/") + (synopsis "Plugin for pytest that changes the default look and feel") + (description + "@code{pytest-sugar} is a plugin for py.test that changes the default +look and feel of py.test, using a progress bar and showing failures and errors +instantly.") + (license license:bsd-3))) + (define-public python-hypothesis (package (name "python-hypothesis") -- 2.18.0