2021-02-20 23:00:59 +00:00
|
|
|
{ stdenv, buildPythonApplication, fetchFromGitHub, isPyPy, lib
|
2021-11-22 19:43:15 +00:00
|
|
|
, defusedxml, future, packaging, psutil, setuptools
|
2019-07-18 10:56:31 +01:00
|
|
|
# Optional dependencies:
|
2020-07-06 10:11:33 +01:00
|
|
|
, bottle, pysnmp
|
2020-02-27 16:23:32 +00:00
|
|
|
, hddtemp
|
2019-07-18 10:56:31 +01:00
|
|
|
, netifaces # IP module
|
2020-07-06 10:12:51 +01:00
|
|
|
, py-cpuinfo
|
2018-09-29 10:36:59 +01:00
|
|
|
}:
|
|
|
|
|
2020-02-27 16:23:32 +00:00
|
|
|
buildPythonApplication rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "glances";
|
2021-11-22 19:43:15 +00:00
|
|
|
version = "3.2.4.2";
|
2018-09-29 10:36:59 +01:00
|
|
|
disabled = isPyPy;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nicolargo";
|
|
|
|
repo = "glances";
|
|
|
|
rev = "v${version}";
|
2021-11-22 19:43:15 +00:00
|
|
|
sha256 = "0gql61lrav3f7wbsvgc1d6vf8r0xi5xs9rz9d3sqw3wj5m90w0vq";
|
2018-09-29 10:36:59 +01:00
|
|
|
};
|
|
|
|
|
2019-07-18 10:56:31 +01:00
|
|
|
# Some tests fail in the sandbox (they e.g. require access to /sys/class/power_supply):
|
2020-03-11 15:20:27 +00:00
|
|
|
patches = lib.optional (doCheck && stdenv.isLinux) ./skip-failing-tests.patch;
|
2020-01-24 10:01:43 +00:00
|
|
|
|
|
|
|
# On Darwin this package segfaults due to mismatch of pure and impure
|
|
|
|
# CoreFoundation. This issues was solved for binaries but for interpreted
|
|
|
|
# scripts a workaround below is still required.
|
|
|
|
# Relevant: https://github.com/NixOS/nixpkgs/issues/24693
|
|
|
|
makeWrapperArgs = lib.optionals stdenv.isDarwin [
|
|
|
|
"--set" "DYLD_FRAMEWORK_PATH" "/System/Library/Frameworks"
|
|
|
|
];
|
2018-09-29 10:59:48 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
2021-08-18 01:14:20 +01:00
|
|
|
preCheck = lib.optionalString stdenv.isDarwin ''
|
2020-01-24 10:01:43 +00:00
|
|
|
export DYLD_FRAMEWORK_PATH=/System/Library/Frameworks
|
|
|
|
'';
|
2018-09-29 10:36:59 +01:00
|
|
|
|
2020-02-27 16:23:32 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
bottle
|
2021-07-10 10:42:39 +01:00
|
|
|
defusedxml
|
2020-02-27 16:23:32 +00:00
|
|
|
future
|
2019-07-18 10:56:31 +01:00
|
|
|
netifaces
|
2021-11-22 19:43:15 +00:00
|
|
|
packaging
|
2020-02-27 16:23:32 +00:00
|
|
|
psutil
|
|
|
|
pysnmp
|
|
|
|
setuptools
|
2020-07-06 10:12:51 +01:00
|
|
|
py-cpuinfo
|
2020-01-24 10:01:43 +00:00
|
|
|
] ++ lib.optional stdenv.isLinux hddtemp;
|
2018-09-29 10:36:59 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-02-27 16:23:32 +00:00
|
|
|
homepage = "https://nicolargo.github.io/glances/";
|
2018-09-29 10:36:59 +01:00
|
|
|
description = "Cross-platform curses-based monitoring tool";
|
2021-07-03 10:40:51 +01:00
|
|
|
changelog = "https://github.com/nicolargo/glances/blob/v${version}/NEWS.rst";
|
2021-05-02 18:06:59 +01:00
|
|
|
license = licenses.lgpl3Only;
|
2020-02-27 16:23:32 +00:00
|
|
|
maintainers = with maintainers; [ jonringer primeos koral ];
|
2018-09-29 10:36:59 +01:00
|
|
|
};
|
|
|
|
}
|