~ruther/guix-local

3d70c680b6c796e89b534919889d6f62f30dc1f0 — Artyom V. Poptsov 11 months ago ad67b02
gnu: s-tui: Update to 1.2.0.

* gnu/packages/admin.scm (s-tui): Update to 1.2.0.
[source]: Use git-fetch.
[inputs]: Remove python-psutil and python-urwid; add python-psutil-7 and
python-urwid-3.
[native-inputs]: Add python-setuptools, and python-wheel.

Change-Id: Ic4c760510145d5c5110c11626d1ea88e8b2bd0f4
1 files changed, 9 insertions(+), 5 deletions(-)

M gnu/packages/admin.scm
M gnu/packages/admin.scm => gnu/packages/admin.scm +9 -5
@@ 2892,16 2892,20 @@ development, not the kernel implementation of ACPI.")
(define-public s-tui
  (package
    (name "s-tui")
    (version "1.1.6")
    (version "1.2.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "s-tui" version))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/amanusk/s-tui")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0mvvqg0pr8k0cy0mbvi25yqm6zsf8mipdbq97xjqfvifryf6j9wx"))))
        (base32 "08mfclgdy6cb8xgp8sc7fpm4qxay37j71b1b3niywi6x206i5m2m"))))
    (build-system python-build-system)
    (native-inputs (list python-setuptools python-wheel))
    (inputs
     (list python-psutil python-urwid))
     (list python-psutil-7 python-urwid-3))
    (home-page "https://github.com/amanusk/s-tui")
    (synopsis "Interactive terminal stress test and monitoring tool")
    (description