zabbix-cli: 3.1.3 -> 3.5.2

https://github.com/unioslo/zabbix-cli/releases/tag/3.5.2
https://github.com/unioslo/zabbix-cli/compare/3.1.3...3.5.2

+8 -9
+8 -9
pkgs/by-name/za/zabbix-cli/package.nix
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "zabbix-cli"; 11 - version = "3.1.3"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 - owner = "usit-gd"; 16 repo = "zabbix-cli"; 17 tag = version; 18 - hash = "sha256-hvLtc6owEOD29Y1oC7EmOOFp9P8hWOuj9N7qhtqkpks="; 19 }; 20 - 21 - pythonRelaxDeps = [ "click-repl" ]; 22 23 build-system = with python3Packages; [ 24 hatchling ··· 27 dependencies = 28 with python3Packages; 29 [ 30 - click-repl 31 httpx 32 httpx.optional-dependencies.socks 33 packaging 34 platformdirs 35 pydantic 36 requests 37 rich ··· 49 freezegun 50 inline-snapshot 51 pytestCheckHook 52 ]; 53 54 # Otherwise tests will fail to create directory ··· 64 command = "HOME=$(mktemp -d) zabbix-cli --version"; 65 }; 66 67 - meta = with lib; { 68 description = "Command-line interface for Zabbix"; 69 homepage = "https://github.com/unioslo/zabbix-cli"; 70 - license = licenses.gpl3Plus; 71 mainProgram = "zabbix-cli"; 72 - maintainers = [ maintainers.anthonyroussel ]; 73 }; 74 }
··· 8 9 python3Packages.buildPythonApplication rec { 10 pname = "zabbix-cli"; 11 + version = "3.5.2"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 + owner = "unioslo"; 16 repo = "zabbix-cli"; 17 tag = version; 18 + hash = "sha256-Sgt3kVbyzNJCSVUYErHNOrgc7Jd3tIwYhwOESRPeAyw="; 19 }; 20 21 build-system = with python3Packages; [ 22 hatchling ··· 25 dependencies = 26 with python3Packages; 27 [ 28 httpx 29 httpx.optional-dependencies.socks 30 packaging 31 platformdirs 32 + prompt-toolkit 33 pydantic 34 requests 35 rich ··· 47 freezegun 48 inline-snapshot 49 pytestCheckHook 50 + pytest-httpserver 51 ]; 52 53 # Otherwise tests will fail to create directory ··· 63 command = "HOME=$(mktemp -d) zabbix-cli --version"; 64 }; 65 66 + meta = { 67 description = "Command-line interface for Zabbix"; 68 homepage = "https://github.com/unioslo/zabbix-cli"; 69 + license = lib.licenses.gpl3Plus; 70 mainProgram = "zabbix-cli"; 71 + maintainers = [ lib.maintainers.anthonyroussel ]; 72 }; 73 }