glances: 3.3.0 -> 3.3.1
https://github.com/nicolargo/glances/releases/tag/v3.3.1
This commit is contained in:
parent
d41a8f77db
commit
262987f52d
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, buildPythonApplication, fetchFromGitHub, fetchpatch, isPyPy, lib
|
{ stdenv, buildPythonApplication, fetchFromGitHub, fetchpatch, isPyPy, lib
|
||||||
, defusedxml, future, packaging, psutil, setuptools
|
, defusedxml, future, ujson, packaging, psutil, setuptools
|
||||||
# Optional dependencies:
|
# Optional dependencies:
|
||||||
, bottle, pysnmp
|
, bottle, pysnmp
|
||||||
, hddtemp
|
, hddtemp
|
||||||
|
@ -9,14 +9,14 @@
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "glances";
|
pname = "glances";
|
||||||
version = "3.3.0";
|
version = "3.3.1";
|
||||||
disabled = isPyPy;
|
disabled = isPyPy;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nicolargo";
|
owner = "nicolargo";
|
||||||
repo = "glances";
|
repo = "glances";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "sha256-4EZjr8oW5759U20YS6eWVZ0pelTCDj75FBc7IkAzd3M=";
|
sha256 = "sha256-93fghrNktcz+YyPkRl6ZiSZC+3a5TDql6eFZMy6veJc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# On Darwin this package segfaults due to mismatch of pure and impure
|
# On Darwin this package segfaults due to mismatch of pure and impure
|
||||||
|
@ -36,6 +36,7 @@ buildPythonApplication rec {
|
||||||
bottle
|
bottle
|
||||||
defusedxml
|
defusedxml
|
||||||
future
|
future
|
||||||
|
ujson
|
||||||
netifaces
|
netifaces
|
||||||
packaging
|
packaging
|
||||||
psutil
|
psutil
|
||||||
|
|
Loading…
Reference in a new issue