guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Update python-pastel to 0.1.1.


From: guix-commits
Subject: 01/01: gnu: Update python-pastel to 0.1.1.
Date: Sun, 6 Oct 2019 04:49:20 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 1e8826bdd3103dbe187b2443b2d8ea937cbd1f1c
Author: address@hidden <address@hidden>
Date:   Fri Oct 4 09:48:40 2019 +0200

    gnu: Update python-pastel to 0.1.1.
    
    * gnu/packages/graphics.scm (python-pastel): Update to 0.1.1.
    [arguments]: Add custom 'check phase.
    [description]: Simplify description.
    
    Signed-off-by: Efraim Flashner <address@hidden>
---
 gnu/packages/graphics.scm | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index 6d6c8d1..88bb500 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -17,6 +17,7 @@
 ;;; Copyright © 2019 John Soo <address@hidden>
 ;;; Copyright © 2019 Pierre Neidhardt <address@hidden>
 ;;; Copyright © 2019 Marius Bakke <address@hidden>
+;;; Copyright © 2019 Tanguy Le Carrour <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -913,28 +914,25 @@ 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]