From 96f254d0675e8f81032edcf11cb611fbe2c29cfa Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 18 Oct 2025 10:00:53 +0100 Subject: [PATCH] gnu: python-cli-helpers: Update to 2.7.0. * gnu/packages/python-xyz.scm (python-cli-helpers): Update to 2.7.0. [propagated-inputs]: Remove python-wcwidth. [native-inputs]: Remove python-wheel. Change-Id: Iceac2e4e5a394170f313c29d34602c71e50e1402 --- gnu/packages/python-xyz.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index bd88eb99e13191ae695949a2d629dadbc8916aad..3ec7d6b28021594c9c352760955a73b18388fa28 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7280,18 +7280,20 @@ files.") (define-public python-cli-helpers (package (name "python-cli-helpers") - (version "2.4.0") + (version "2.7.0") (source (origin (method url-fetch) (uri (pypi-uri "cli_helpers" version)) (sha256 - (base32 "0kbs5106kh4yr49wp6cb0xaf6mc6ylkgl86v64vlfai1b9q3p42m")))) + (base32 "1h4b0ka9nh9qidl6s1ard1ixh9c3d0ai5ph3013grhpbvc81glb2")))) (build-system pyproject-build-system) (native-inputs - (list python-pytest python-setuptools python-wheel)) + (list python-pytest + python-setuptools)) (propagated-inputs - (list python-configobj python-tabulate python-wcwidth)) + (list python-configobj + python-tabulate)) (home-page "https://github.com/dbcli/cli_helpers") (synopsis "Helpers for building command-line apps") (description