summary refs log tree commit diff
path: root/pkgs/applications/system
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-11-22 20:43:15 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-11-22 21:15:21 -0800
commitebbca75dc2b74d6b68f9a157ac2ec643a7570d19 (patch)
tree39f2beab10e5f3c0b510828e0351423924e64cdb /pkgs/applications/system
parent74d907ad052d0ebeb67dcda97c6f227de3c5a3a5 (diff)
glances: 3.2.3.1 -> 3.2.4.2
Diffstat (limited to 'pkgs/applications/system')
-rw-r--r--pkgs/applications/system/glances/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/system/glances/default.nix b/pkgs/applications/system/glances/default.nix
index 7c3120f57040b..b25065c5f1fff 100644
--- a/pkgs/applications/system/glances/default.nix
+++ b/pkgs/applications/system/glances/default.nix
@@ -1,5 +1,5 @@
 { stdenv, buildPythonApplication, fetchFromGitHub, isPyPy, lib
-, defusedxml, future, psutil, setuptools
+, defusedxml, future, packaging, psutil, setuptools
 # Optional dependencies:
 , bottle, pysnmp
 , hddtemp
@@ -9,14 +9,14 @@
 
 buildPythonApplication rec {
   pname = "glances";
-  version = "3.2.3.1";
+  version = "3.2.4.2";
   disabled = isPyPy;
 
   src = fetchFromGitHub {
     owner = "nicolargo";
     repo = "glances";
     rev = "v${version}";
-    sha256 = "0h7y36z4rizl1lyxacq32vpmvbwn9w2nrvrxn791060cksfw4xwd";
+    sha256 = "0gql61lrav3f7wbsvgc1d6vf8r0xi5xs9rz9d3sqw3wj5m90w0vq";
   };
 
   # Some tests fail in the sandbox (they e.g. require access to /sys/class/power_supply):
@@ -40,6 +40,7 @@ buildPythonApplication rec {
     defusedxml
     future
     netifaces
+    packaging
     psutil
     pysnmp
     setuptools