lol

python312Packages.zabbix-utils: init at 2.0.2

Library for zabbix

https://github.com/zabbix/python-zabbix-utils

+42
+40
pkgs/development/python-modules/zabbix-utils/default.nix
··· 1 + { 2 + lib, 3 + aiohttp, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + pytestCheckHook, 7 + pythonOlder, 8 + setuptools, 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "zabbix-utils"; 13 + version = "2.0.2"; 14 + pyproject = true; 15 + 16 + disabled = pythonOlder "3.8"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "zabbix"; 20 + repo = "python-zabbix-utils"; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-rRPen/FzWT0cCnXWiSdoybtXeP1pxYqnjq5b0QPVs1I="; 23 + }; 24 + 25 + build-system = [ setuptools ]; 26 + 27 + dependencies = [ aiohttp ]; 28 + 29 + nativeCheckInputs = [ pytestCheckHook ]; 30 + 31 + pythonImportsCheck = [ "zabbix_utils" ]; 32 + 33 + meta = { 34 + description = "Library for zabbix"; 35 + homepage = "https://github.com/zabbix/python-zabbix-utils"; 36 + changelog = "https://github.com/zabbix/python-zabbix-utils/blob/${src.rev}/CHANGELOG.md"; 37 + license = lib.licenses.mit; 38 + maintainers = with lib.maintainers; [ fab ]; 39 + }; 40 + }
+2
pkgs/top-level/python-packages.nix
··· 18366 18366 pname = "z3-solver"; 18367 18367 }))).python; 18368 18368 18369 + zabbix-utils = callPackage ../development/python-modules/zabbix-utils { }; 18370 + 18369 18371 zadnegoale = callPackage ../development/python-modules/zadnegoale { }; 18370 18372 18371 18373 zamg = callPackage ../development/python-modules/zamg { };