From b06b3ad0cd4f3e8fd94d6403831fa115b7c0af20 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 23 Sep 2025 08:37:12 +0100 Subject: [PATCH] gnu: python-mando: Update to 0.8.2. * gnu/packages/python-xyz.scm (python-mando): Update to 0.8.2. Improve style. [bulid-system]: Switch to pyproject-bulid-system. [arguments]: Drop all. [propagated-inputs]: Remove python-rst2ansi and python-six. [native-inputs]: Add python-setuptools. Change-Id: I2ef5ca1c19e209404491be4a4fd616080d6ca744 --- gnu/packages/python-xyz.scm | 32 +++++++++++--------------------- 1 file changed, 11 insertions(+), 21 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a164e8134c80234e09218fb00d8954639ffe6efe..8e0704eadd99cadbf1fb90977402572d97f20524 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26479,31 +26479,21 @@ command line utility, a python library and plugins for various editors.") (define-public python-mando (package (name "python-mando") - (version "0.7.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "mando" version)) - (sha256 - (base32 - "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)) + (version "0.8.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "mando" version)) + (sha256 + (base32 "1ddn4h1fvc9f8z2p8l88jyazxnp0h7rmh711i2hwkipxlbcmk5jk")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-pytest python-setuptools)) (home-page "https://mando.readthedocs.org/") - (synopsis - "Wrapper around argparse, allowing creation of complete CLI applications") + (synopsis "Wrapper around argparse, allowing creation of complete CLI applications") (description "This package is a wrapper around argparse, allowing you to write complete CLI - applications in seconds while maintaining all the flexibility.") +applications in seconds while maintaining all the flexibility.") (license license:expat))) (define-public python-mwclient