From 261047e2b48348dd209e77b1084b763eda14c7a6 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Wed, 25 Jun 2025 21:39:17 -0300 Subject: [PATCH] gnu: python-cli-helpers: Update to 2.4.0. * gnu/packages/python-xyz.scm (python-cli-helpers): Update to 2.4.0. [source]: Fetch from PyPI. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. [propagated-inputs]: Sort alphabetically. Change-Id: If73bdd8881c48a6595ca2b9d2656838ca1090224 --- gnu/packages/python-xyz.scm | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 09b9d788afeca1e46951f035751e836d7dad0772..9332fadcb1294fb70a162cb24b786e95ac076709 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6735,22 +6735,18 @@ files.") (define-public python-cli-helpers (package (name "python-cli-helpers") - (version "2.2.1") + (version "2.4.0") (source (origin - ;; There's no source tarball on PyPI. - (method git-fetch) - (uri (git-reference - (url "https://github.com/dbcli/cli_helpers") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) + (method url-fetch) + (uri (pypi-uri "cli_helpers" version)) (sha256 - (base32 "1hzavh9v9lkd1dn9f0nvg80f7v4banxvcrj10zy72przqz51k1sb")))) - (build-system python-build-system) + (base32 "0kbs5106kh4yr49wp6cb0xaf6mc6ylkgl86v64vlfai1b9q3p42m")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-pytest python-setuptools python-wheel)) (propagated-inputs - (list python-wcwidth python-configobj python-tabulate)) + (list python-configobj python-tabulate python-wcwidth)) (home-page "https://github.com/dbcli/cli_helpers") (synopsis "Helpers for building command-line apps") (description