guix-commits
[Top][All Lists]
Advanced

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

05/16: gnu: python-mando: Update to 0.7.1.


From: guix-commits
Subject: 05/16: gnu: python-mando: Update to 0.7.1.
Date: Mon, 15 Aug 2022 18:50:47 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit faea55669fd5f9a680190e8c630ea54bc6d9732b
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Mon Aug 15 23:17:04 2022 +0200

    gnu: python-mando: Update to 0.7.1.
    
    * gnu/packages/python-xyz.scm (python-mando): Update to 0.7.1.
    [arguments]: Override check phase.
---
 gnu/packages/python-xyz.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 85dfc3c3e0..d183196e10 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19503,14 +19503,21 @@ builds partial trees by inspecting living objects.")
 (define-public python-mando
   (package
     (name "python-mando")
-    (version "0.6.4")
+    (version "0.7.1")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "mando" version))
               (sha256
                (base32
-                "0q6rl085q1hw1wic52pqfndr0x3nirbxnhqj9akdm5zhq2fv3zkr"))))
+                "001mikga36i811pbc95rb45m2kzivkx4xb0fn3pzl4xnnjcskfhq"))))
     (build-system python-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (replace 'check
+                 (lambda* (#:key tests? #:allow-other-keys)
+                   (when tests?
+                     (invoke "pytest" "-vv")))))))
     (propagated-inputs
      (list python-rst2ansi python-six))
     (native-inputs



reply via email to

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