diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-15 23:17:04 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-16 00:43:44 +0200 |
commit | faea55669fd5f9a680190e8c630ea54bc6d9732b (patch) | |
tree | 0dabe4eb7c6216219714bd6b6e514c4f2343357f | |
parent | 46cb02c7cbd4ab1b89f24844d7889ab8a30d9e38 (diff) |
gnu: python-mando: Update to 0.7.1.
* gnu/packages/python-xyz.scm (python-mando): Update to 0.7.1.
[arguments]: Override check phase.
-rw-r--r-- | gnu/packages/python-xyz.scm | 11 |
1 files 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 |