mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
e1502a8be2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/zabbix-cli/versions
29 lines
737 B
Nix
29 lines
737 B
Nix
{ fetchFromGitHub, lib, python2Packages }:
|
|
let
|
|
pythonPackages = python2Packages;
|
|
|
|
in pythonPackages.buildPythonApplication rec {
|
|
name = "zabbix-cli-${version}";
|
|
version = "2.0.1";
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ ipaddr requests ];
|
|
|
|
# argparse is part of the standardlib
|
|
prePatch = ''
|
|
substituteInPlace setup.py --replace "'argparse'," ""
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "usit-gd";
|
|
repo = "zabbix-cli";
|
|
rev = version;
|
|
sha256 = "0kwrfgq6h26dajll11f21c8b799bsfl1axmk2fdghl1gclxra7ry";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Command-line interface for Zabbix";
|
|
homepage = src.meta.homepage;
|
|
license = [ licenses.gpl3 ];
|
|
maintainers = [ maintainers.womfoo ];
|
|
};
|
|
}
|