summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2022-05-22 02:00:05 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2022-05-22 02:00:09 +0200
commita9b3854eb7d889f25bcc1c94beebb8de02ba3f43 (patch)
treeec762f23b086c6a03e442dc0dc512ef697ab43e3
parent31d037ecf347cd07432a436ff68da62d6d7c8b6a (diff)
downloadguix-patches-a9b3854eb7d889f25bcc1c94beebb8de02ba3f43.tar
guix-patches-a9b3854eb7d889f25bcc1c94beebb8de02ba3f43.tar.gz
gnu: python-cli-helpers: Update to 2.2.1.
* gnu/packages/python-xyz.scm (python-cli-helpers): Update to 2.2.1. [propagated-inputs]: Remove python-terminaltables.
-rw-r--r--gnu/packages/python-xyz.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6ca759e2e2..22bb8e715f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3592,7 +3592,7 @@ files.")
(define-public python-cli-helpers
(package
(name "python-cli-helpers")
- (version "2.0.1")
+ (version "2.2.1")
(source
(origin
;; There's no source tarball on PyPI.
@@ -3602,13 +3602,12 @@ files.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1bg2iw9l5dip0kbs00hajdk2v18wvhssbnq8hdf71278qf0wks5l"))))
+ (base32 "1hzavh9v9lkd1dn9f0nvg80f7v4banxvcrj10zy72przqz51k1sb"))))
(build-system python-build-system)
(native-inputs
(list python-pytest))
(propagated-inputs
- (list python-wcwidth python-configobj python-tabulate
- python-terminaltables))
+ (list python-wcwidth python-configobj python-tabulate))
(home-page "https://github.com/dbcli/cli_helpers")
(synopsis "Helpers for building command-line apps")
(description