gnu: python-pyzabbix: Update to 1.3.1.

* gnu/packages/monitoring.scm (python-pyzabbix): Update to 1.3.1.
[build-system]: Switch to pyproject-build-system.
[arguments] <test-flags>: Provide path to tests.
<phases>: Drop all.
[native-inputs]: Add python-setuptools.

Change-Id: If55f0330217fd3416d0a3318eaaa6734b14dafca
This commit is contained in:
Sharlatan Hellseher 2025-12-31 14:55:45 +00:00
parent 5e5edd6f74
commit b7b2b5b6b9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -407,30 +407,27 @@ through a text-based interface.")
(define-public python-pyzabbix
(package
(name "python-pyzabbix")
(version "1.2.1")
(home-page "https://github.com/lukecyca/pyzabbix")
;; No tests on PyPI, use the git checkout.
(version "1.3.1")
(source
(origin
(method git-fetch)
(uri (git-reference (url home-page) (commit version)))
(uri (git-reference
(url "https://github.com/lukecyca/pyzabbix")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0ad5xac67brmwc3wd0f87pjplly3cqyrz1dp725lzz2hrjgiaqi8"))))
(build-system python-build-system)
(base32 "1dbs3bz1mjlvlg46ikhg5j7agwni61ljlpiziknklv95yp29n86v"))))
(build-system pyproject-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(if tests?
(invoke "pytest" "-vv" "tests")
(format #t "test suite not run~%")))))))
(list #:test-flags #~(list "tests")))
(native-inputs
;; For tests.
(list python-requests-mock python-pytest))
(list python-pytest
python-requests-mock
python-setuptools))
(propagated-inputs
(list python-packaging python-requests))
(list python-packaging
python-requests))
(home-page "https://github.com/lukecyca/pyzabbix")
(synopsis "Python interface to the Zabbix API")
(description
"@code{pyzabbix} is a Python module for working with the Zabbix API.")