summaryrefslogtreecommitdiff
path: root/gnu/packages/monitoring.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 14:55:45 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 15:04:14 +0000
commitb7b2b5b6b933fe4ced658d7f2b445c0fd2237b8d (patch)
tree88200d2798905454b144d5084ac252273758c3da /gnu/packages/monitoring.scm
parent5e5edd6f740522fccec944e8d4afa76d63f3acff (diff)
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
Diffstat (limited to 'gnu/packages/monitoring.scm')
-rw-r--r--gnu/packages/monitoring.scm29
1 files changed, 13 insertions, 16 deletions
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm
index e5b31e7c880..7324e1d8538 100644
--- a/gnu/packages/monitoring.scm
+++ b/gnu/packages/monitoring.scm
@@ -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.")