diff options
author | Raphaël Mélotte <raphael.melotte@mind.be> | 2023-04-20 13:15:32 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-05-06 17:17:57 +0200 |
commit | 4dbe29a76a69476cb44fe8f42365aa73115377c0 (patch) | |
tree | 56a06393c5a8331ae532426242422df983491ea5 | |
parent | 819cd8071097b4fba7764c70b276e5debdf28fea (diff) |
gnu: glances: Update to 3.3.1.1.
* gnu/packages/python-xyz.scm (glances): Update to 3.3.1.1
[propagated-inputs]: Add python-ujson, which is a new dependency since release
v3.3.1 (replacing the builtin json module).
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c0476db6d5..b542a9f54a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19519,13 +19519,13 @@ numbers, real numbers, mixed types and more, and comes with a shell command (define-public glances (package (name "glances") - (version "3.3.0.4") + (version "3.3.1.1") (source (origin (method url-fetch) (uri (pypi-uri "Glances" version)) (sha256 - (base32 "0klyyxqc7cbrf1i741304i3rrwan19qm2v58xmrlgqsmxac542la")) + (base32 "16i92vsjpxpnpkab1wa1y2iw931mq1hna0d2gkkjmgxz1hhr58ih")) (modules '((guix build utils))) (snippet '(begin @@ -19539,7 +19539,7 @@ numbers, real numbers, mixed types and more, and comes with a shell command #t)))) (build-system python-build-system) (propagated-inputs - (list python-defusedxml python-future python-packaging python-psutil)) + (list python-defusedxml python-future python-packaging python-psutil python-ujson)) (home-page "https://github.com/nicolargo/glances") (synopsis "Cross-platform curses-based monitoring tool") (description |