nixpkgs/pkgs/servers/monitoring/plugins/esxi.nix
2018-12-27 14:22:27 +08:00

38 lines
890 B
Nix

{ stdenv, fetchFromGitHub, python2Packages }:
let
bName = "check_esxi_hardware";
pName = stdenv.lib.replaceStrings [ "_" ] [ "-" ] "${bName}";
in python2Packages.buildPythonApplication rec {
name = "${pName}-${version}";
version = "20181001";
src = fetchFromGitHub {
owner = "Napsty";
repo = bName;
rev = version;
sha256 = "0azfacxcnnxxfqzrhh29k8cnjyr88gz35bi6h8fq931fl3plv10l";
};
dontBuild = true;
doCheck = false;
installPhase = ''
runHook preInstall
install -Dm755 -t $out/bin ${bName}.py
install -Dm644 -t $out/share/doc/${pName} README.md
runHook postInstall
'';
propagatedBuildInputs = with python2Packages; [ pywbem ];
meta = with stdenv.lib; {
homepage = https://www.claudiokuenzler.com/nagios-plugins/;
license = licenses.gpl2;
maintainers = with maintainers; [ peterhoeg ];
};
}