diff options
Diffstat (limited to 'gnu/packages/monitoring.scm')
-rw-r--r-- | gnu/packages/monitoring.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 6325c9b96f..7dd30f9a6e 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -326,7 +326,10 @@ solution (server-side)"))) (string-append #$output "/share/doc/" #$name "/html"))))))) (native-inputs - (list python-pytest python-sphinx)) + (list python-pytest + python-setuptools + python-sphinx + python-wheel)) (inputs (list ncurses python-requests)) (home-page "https://github.com/unioslo/zabbix-cli") @@ -495,19 +498,17 @@ demand.") (define-public python-prometheus-client (package (name "python-prometheus-client") - (version "0.7.1") + (version "0.20.0") (source (origin (method url-fetch) (uri (pypi-uri "prometheus_client" version)) (sha256 - (base32 "1ni2yv4ixwz32nz39ckia76lvggi7m19y5f702w5qczbnfi29kbi")))) + (base32 "12dvlh4k6in87q47f0zqh8nrnnfs0pwrs2xynbf34yhl1g82jxi8")))) (build-system python-build-system) (arguments '(;; No included tests. #:tests? #f)) - (propagated-inputs - (list python-twisted)) (home-page "https://github.com/prometheus/client_python") (synopsis "Python client for the Prometheus monitoring system") |