summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2019-08-27 22:38:46 +0200
committerMichael Weiss <dev.primeos@gmail.com>2019-08-27 23:30:41 +0200
commit81e643d2fdb843d2c1f5f005d9e210519a6808ea (patch)
tree247f4c610b7c993e8fc187abc187e465873f3dc2
parent70f0d81861c71317828dde3262c0439c55dda83f (diff)
downloadnixpkgs-81e643d2fdb843d2c1f5f005d9e210519a6808ea.tar
nixpkgs-81e643d2fdb843d2c1f5f005d9e210519a6808ea.tar.gz
nixpkgs-81e643d2fdb843d2c1f5f005d9e210519a6808ea.tar.bz2
nixpkgs-81e643d2fdb843d2c1f5f005d9e210519a6808ea.tar.lz
nixpkgs-81e643d2fdb843d2c1f5f005d9e210519a6808ea.tar.xz
nixpkgs-81e643d2fdb843d2c1f5f005d9e210519a6808ea.tar.zst
nixpkgs-81e643d2fdb843d2c1f5f005d9e210519a6808ea.zip
python3Packages.glances: 3.1.1 -> 3.1.2
Changelog: https://github.com/nicolargo/glances/blob/v3.1.2/NEWS.rst#version-312

Note/TODO: Theoretically the IP test should work(?) now:

> Bugs corrected:
> - Error with IP Plugin : object has no attribute bug #1528
> - ip plugin empty interface bug #1509

but the test is still failing inside the Nix build sandbox.
-rw-r--r--pkgs/development/python-modules/glances/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/glances/default.nix b/pkgs/development/python-modules/glances/default.nix
index dd5d90bb968..95c64e7187b 100644
--- a/pkgs/development/python-modules/glances/default.nix
+++ b/pkgs/development/python-modules/glances/default.nix
@@ -9,14 +9,14 @@
 
 buildPythonPackage rec {
   name = "glances-${version}";
-  version = "3.1.1";
+  version = "3.1.2";
   disabled = isPyPy;
 
   src = fetchFromGitHub {
     owner = "nicolargo";
     repo = "glances";
     rev = "v${version}";
-    sha256 = "1x9gw7hzw3p8zki82wdf359yxj0ylfw2096a4y621kj0p4xqsr4q";
+    sha256 = "1z9sq0chhm8m4gq98yfknxj408cj017h7j375blngjk2zvhw39qd";
   };
 
   # Some tests fail in the sandbox (they e.g. require access to /sys/class/power_supply):