From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35927) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iGISV-0003BU-Dv for guix-patches@gnu.org; Fri, 04 Oct 2019 03:57:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iGISU-0008HX-1m for guix-patches@gnu.org; Fri, 04 Oct 2019 03:57:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:32852) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iGIST-0008HQ-UU for guix-patches@gnu.org; Fri, 04 Oct 2019 03:57:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iGIST-0002JW-Qj for guix-patches@gnu.org; Fri, 04 Oct 2019 03:57:01 -0400 Subject: [bug#37614] [PATCH 1/1] gnu: Fix and upgrade python-pastel. References: <20191004075309.22qdth7ob4zgv233@rafflesia> In-Reply-To: <20191004075309.22qdth7ob4zgv233@rafflesia> Resent-Message-ID: Date: Fri, 4 Oct 2019 09:55:56 +0200 From: Tanguy Le Carrour Message-ID: <20191004075556.pg3vwfaklaj27vac@rafflesia> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="ys57tz7yzv37p5hz" Content-Disposition: inline Content-Transfer-Encoding: 8bit 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: 37614@debbugs.gnu.org --ys57tz7yzv37p5hz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline --ys57tz7yzv37p5hz Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit >From 1d97f3224f01721567120a5568c0416bfbe0dd35 Mon Sep 17 00:00:00 2001 From: "tlecarrour@easter-eggs.com" Date: Fri, 4 Oct 2019 09:48:40 +0200 Subject: [PATCH] gnu: Fix and upgrade python-pastel. --- gnu/packages/graphics.scm | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 6d6c8d1e1c..8a3c39373b 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2019 John Soo ;;; Copyright © 2019 Pierre Neidhardt ;;; Copyright © 2019 Marius Bakke +;;; Copyright © 2019 Tanguy Le Carrour ;;; ;;; This file is part of GNU Guix. ;;; @@ -913,28 +914,27 @@ rendering SVG graphics.") (define-public python-pastel (package (name "python-pastel") - (version "0.1.0") + (version "0.1.1") (source (origin (method url-fetch) (uri (pypi-uri "pastel" version)) (sha256 (base32 - "1hqbm934n5yjwn31aq8h7shrr0rcy326wrqfc856vyn0gr0sy21i")))) + "1qxcrcl8pzh66l8s6hym153mijdhwna0afcsmgca0bj4n80ijfxz")))) (build-system python-build-system) + (arguments + `(#:phases (modify-phases + %standard-phases + (replace + 'check + (lambda _ (invoke "pytest" "pastel" "tests/")))))) (native-inputs `(("python-pytest" ,python-pytest))) (home-page "https://github.com/sdispater/pastel") (synopsis "Library to colorize strings in your terminal") (description "Pastel is a simple library to help you colorize strings in -your terminal. It comes bundled with predefined styles: -@enumerate -@item info: green -@item comment: yellow -@item question: black on cyan -@item error: white on red -@end enumerate -") +your terminal.") (license license:expat))) (define-public python2-pastel -- 2.23.0 --ys57tz7yzv37p5hz--