fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib
2, fetchFromGitHub
3, python3
4}:
5
6python3.pkgs.buildPythonApplication rec {
7 pname = "zabbix-cli";
8 version = "2.3.2";
9 format = "setuptools";
10
11 src = fetchFromGitHub {
12 owner = "usit-gd";
13 repo = "zabbix-cli";
14 rev = "refs/tags/${version}";
15 sha256 = "sha256-B5t/vxCmPdRR9YKOc2htI57Kmk1ZrpwPUln4JoUrK6g=";
16 };
17
18 propagatedBuildInputs = with python3.pkgs; [
19 packaging
20 requests
21 ];
22
23 nativeCheckInputs = with python3.pkgs; [
24 pytestCheckHook
25 ];
26
27 disabledTests = [
28 # TypeError: option values must be strings
29 "test_descriptor_del"
30 "test_initialize"
31 ];
32
33 meta = with lib; {
34 description = "Command-line interface for Zabbix";
35 homepage = "https://github.com/unioslo/zabbix-cli";
36 license = licenses.gpl3Plus;
37 maintainers = [ ];
38 };
39}