summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-25 21:39:17 -0300
committerVinicius Monego <monego@posteo.net>2025-06-26 00:42:02 -0300
commit261047e2b48348dd209e77b1084b763eda14c7a6 (patch)
treed18cd3e585aef98a405ab800ce345c8e3f8b6bcd /gnu/packages/python-xyz.scm
parentc241a5e50b9adc5b5ad8291a2c31199bb99201cc (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm18
1 files changed, 7 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 09b9d788af..9332fadcb1 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