From 2b82e6debb910bba27fb2f8f49208406aa3673c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Birk=20S=C3=B8rensen?= Date: Mon, 3 Nov 2025 19:59:47 +0100 Subject: [PATCH] gnu: glances: Update to 4.3.0. gnu/packages/python-xyz.scm (glances): Update to 4.3.0. Change-Id: I467ca911e2f7b6c98904143294a98232e437c22d --- gnu/packages/python-xyz.scm | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c4dffd5506934f275df1612bb0eb6e37385a1db5..676bf23cef54e76bee2cea7eaabe81d8a97dfde9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -23643,16 +23643,16 @@ numbers, real numbers, mixed types and more, and comes with a shell command (define-public glances (package (name "glances") - (version "4.1.1") + (version "4.3.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nicolargo/glances") - (commit (string-append "v" version)))) + (url "https://github.com/nicolargo/glances") + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "00xyixi3wrajmkmqgd1rlaqypi6c1wskm6q0xbrw2k1zc7wi3kxl")))) + (base32 "1v2rsffy99ilarl5vnsz4zwb0wp3s3jnsbcbiqx53qxv88whfz71")))) (build-system pyproject-build-system) (arguments (list @@ -23663,19 +23663,21 @@ numbers, real numbers, mixed types and more, and comes with a shell command ;; Glances phones PyPI for weekly update checks by default. ;; Disable these. The user can re-enable them if desired. (substitute* "glances/outdated.py" - (("^(.*)self\\.load_config\\(config\\)\n" line - indentation) + (("^(.*)self\\.load_config\\(config\\)\n" line indentation) (string-append indentation - "self.args.disable_check_update = True\n" - line))))) + "self.args.disable_check_update = True\n" line))))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? ;; XXX: Taken from tox.ini. (invoke "python" "unittest-core.py"))))))) (native-inputs (list python-pytest python-setuptools)) - (propagated-inputs (list python-defusedxml python-orjson python-packaging - python-psutil)) + (propagated-inputs (list python-defusedxml + python-jinja2 + python-orjson + python-packaging + python-psutil + python-shtab)) (home-page "https://github.com/nicolargo/glances") (synopsis "Cross-platform curses-based monitoring tool") (description