~ruther/guix-local

96f254d0675e8f81032edcf11cb611fbe2c29cfa — Sharlatan Hellseher 6 months ago 13844e0
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
1 files changed, 6 insertions(+), 4 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +6 -4
@@ 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