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