guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3d70c680b6c796e89b534919889d6f62f30dc1f0
Author: Artyom V. Poptsov <[email protected]>
AuthorDate: Thu Jun 5 22:33:44 2025 +0300

    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
---
 gnu/packages/admin.scm | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 55f1208c4d..30b94606eb 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -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

Reply via email to