mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 17:23:34 +00:00
xenon: init at 0.9.1
This commit is contained in:
parent
89eec3e417
commit
12a3171606
31
pkgs/by-name/xe/xenon/package.nix
Normal file
31
pkgs/by-name/xe/xenon/package.nix
Normal file
@ -0,0 +1,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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user