about summary refs log tree commit diff
path: root/pkgs/by-name/xe/xenon/package.nix
blob: f3b3f3f50320dba1e5352ba228cb58a70e5d1c54 (plain) (blame)
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
{ lib
, fetchPypi
, python3
}:

let
  pname = "xenon";
  version = "0.9.1";
in
python3.pkgs.buildPythonApplication {

  inherit pname version;
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-1nRREcPiWLdJpP1CSxuJnZnqGDzqIyNl7i+I/n2AwDs=";
  };

  doCheck = false;

  propagatedBuildInputs = with python3.pkgs; [ requests radon pyaml ];

  meta = with lib; {
    description = "Monitoring tool based on radon";
    homepage = "https://github.com/rubik/xenon";
    license = licenses.mit;
    maintainers = with maintainers; [ jfvillablanca ];
    mainProgram = "xenon";
  };
}