summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorChristian Birk Sørensen <chrbirks@gmail.com>2025-11-03 19:59:47 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-04 10:50:02 +0000
commit2b82e6debb910bba27fb2f8f49208406aa3673c6 (patch)
tree6a6138bbc3f4d12254a4001c67964c21a92a8e91 /gnu/packages
parentf453bc442580b25f47253d7d5b57f5e17c9b0a33 (diff)
gnu: glances: Update to 4.3.0.
gnu/packages/python-xyz.scm (glances): Update to 4.3.0. Change-Id: I467ca911e2f7b6c98904143294a98232e437c22d
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-xyz.scm22
1 files changed, 12 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c4dffd55069..676bf23cef5 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