aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/servers/monitoring/plugins/esxi.nix
blob: 2dc355ecac3d47fc2474963d32e979d8806fd933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchFromGitHub, python3Packages }:

let
  bName = "check_esxi_hardware";

in python3Packages.buildPythonApplication rec {
  pname = stdenv.lib.replaceStrings [ "_" ] [ "-" ] bName;
  version = "20200710";

  src = fetchFromGitHub {
    owner  = "Napsty";
    repo   = bName;
    rev    = version;
    sha256 = "EC6np/01S+5SA2H9z5psJ9Pq/YoEyGdHL9wHUKKsNas=";
  };

  dontBuild = true;
  doCheck = false;

  installPhase = ''
    runHook preInstall

    install -Dm755 ${bName}.py $out/bin/${bName}
    install -Dm644 -t $out/share/doc/${pname} README.md

    runHook postInstall
  '';

  propagatedBuildInputs = with python3Packages; [ pywbem requests setuptools ];

  meta = with stdenv.lib; {
    homepage = "https://www.claudiokuenzler.com/nagios-plugins/";
    license = licenses.gpl2;
    maintainers = with maintainers; [ peterhoeg ];
  };
}