summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/system
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-07-10 11:42:39 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-07-10 09:22:46 -0700
commitc05bef5bc56325032f4602a9d5025551653bcc5c (patch)
treead408002aa64fd2721111110fd44e14155f1b6c8 /pkgs/applications/system
parent77319590f6f529379a3a2242c9b9b1fd27a38f18 (diff)
glances: 3.2.0 -> 3.2.1
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 0fc85cea05c1..e950fcfb1cda 100644
--- a/pkgs/applications/system/glances/default.nix
+++ b/pkgs/applications/system/glances/default.nix
@@ -1,5 +1,5 @@
{ stdenv, buildPythonApplication, fetchFromGitHub, isPyPy, lib
-, future, psutil, setuptools
+, defusedxml, future, psutil, setuptools
# Optional dependencies:
, bottle, pysnmp
, hddtemp
@@ -9,14 +9,14 @@
buildPythonApplication rec {
pname = "glances";
- version = "3.2.0";
+ version = "3.2.1";
disabled = isPyPy;
src = fetchFromGitHub {
owner = "nicolargo";
repo = "glances";
rev = "v${version}";
- sha256 = "126xpx8i85giy3hkhqh0qcln9i1qj5bfciaqh9486rkl54xm8zsr";
+ sha256 = "0m2cxmlyay2rr9hnc08s5q9xwdqy0nhzsl10by4f9ji0kiahnpl6";
};
# Some tests fail in the sandbox (they e.g. require access to /sys/class/power_supply):
@@ -37,6 +37,7 @@ buildPythonApplication rec {
propagatedBuildInputs = [
bottle
+ defusedxml
future
netifaces
psutil