diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-23 08:37:12 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:57 +0100 |
| commit | b06b3ad0cd4f3e8fd94d6403831fa115b7c0af20 (patch) | |
| tree | 4800b55c4191b31a9dde9f5af155274a2135b4e7 /gnu/packages/python-xyz.scm | |
| parent | 362012be5d8b0d82b1de7817c7f9cc19ccb2a847 (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 32 |
1 files changed, 11 insertions, 21 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a164e8134c..8e0704eadd 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 |
