zabbix-cli: init at 1.6.1

This commit is contained in:
Kranium Gikos Mendoza 2017-05-26 23:08:32 +10:00
parent 107d53f40c
commit 32b2aa4891
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ fetchFromGitHub, lib, python2Packages }:
let
pythonPackages = python2Packages;
in pythonPackages.buildPythonApplication rec {
name = "zabbix-cli-${version}";
version = "1.6.1";
propagatedBuildInputs = with pythonPackages; [ argparse requests ];
src = fetchFromGitHub {
owner = "usit-gd";
repo = "zabbix-cli";
rev = version;
sha256 = "17ip3s8ifgj264zwxrr857wk02xmzmlsjrr613mdhkgdwizqbcs3";
};
meta = with lib; {
description = "Command-line interface for Zabbix";
homepage = src.meta.homepage;
license = [ licenses.gpl3 ];
maintainers = [ maintainers.womfoo ];
};
}

View File

@ -1695,6 +1695,8 @@ with pkgs;
mcrcon = callPackage ../tools/networking/mcrcon {};
zabbix-cli = callPackage ../tools/misc/zabbix-cli { };
### DEVELOPMENT / EMSCRIPTEN
buildEmscriptenPackage = callPackage ../development/em-modules/generic { };