nixpkgs/pkgs/applications/system/glances/default.nix

57 lines
1.6 KiB
Nix
Raw Normal View History

2021-02-20 15:00:59 -08:00
{ stdenv, buildPythonApplication, fetchFromGitHub, isPyPy, lib
, defusedxml, future, psutil, setuptools
# Optional dependencies:
, bottle, pysnmp
, hddtemp
, netifaces # IP module
, py-cpuinfo
2018-09-29 02:36:59 -07:00
}:
buildPythonApplication rec {
pname = "glances";
version = "3.2.3";
2018-09-29 02:36:59 -07:00
disabled = isPyPy;
src = fetchFromGitHub {
owner = "nicolargo";
repo = "glances";
rev = "v${version}";
sha256 = "1nc8bdzzrzaircq3myd32w6arpy2prn739886cq2h47cpinxmvpr";
2018-09-29 02:36:59 -07:00
};
# Some tests fail in the sandbox (they e.g. require access to /sys/class/power_supply):
2020-03-11 08:20:27 -07:00
patches = lib.optional (doCheck && stdenv.isLinux) ./skip-failing-tests.patch;
# 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"
];
doCheck = true;
preCheck = lib.optional stdenv.isDarwin ''
export DYLD_FRAMEWORK_PATH=/System/Library/Frameworks
'';
2018-09-29 02:36:59 -07:00
propagatedBuildInputs = [
bottle
defusedxml
future
netifaces
psutil
pysnmp
setuptools
py-cpuinfo
] ++ lib.optional stdenv.isLinux hddtemp;
2018-09-29 02:36:59 -07:00
meta = with lib; {
homepage = "https://nicolargo.github.io/glances/";
2018-09-29 02:36:59 -07:00
description = "Cross-platform curses-based monitoring tool";
changelog = "https://github.com/nicolargo/glances/blob/v${version}/NEWS.rst";
2021-05-02 10:06:59 -07:00
license = licenses.lgpl3Only;
maintainers = with maintainers; [ jonringer primeos koral ];
2018-09-29 02:36:59 -07:00
};
}