gnu: python-pyzabbix: Update to 1.0.0.
* gnu/packages/monitoring.scm (python-pyzabbix): Update to 1.0.0. [arguments]: Fix typo. [propagated-inputs]: Add PYTHON-SEMANTIC-VERSION.
This commit is contained in:
parent
0983f01291
commit
a8e24c3fd0
1 changed files with 6 additions and 6 deletions
|
@ -287,7 +287,7 @@ through a text-based interface.")
|
||||||
(define-public python-pyzabbix
|
(define-public python-pyzabbix
|
||||||
(package
|
(package
|
||||||
(name "python-pyzabbix")
|
(name "python-pyzabbix")
|
||||||
(version "0.8.2")
|
(version "1.0.0")
|
||||||
(home-page "https://github.com/lukecyca/pyzabbix")
|
(home-page "https://github.com/lukecyca/pyzabbix")
|
||||||
;; No tests on PyPI, use the git checkout.
|
;; No tests on PyPI, use the git checkout.
|
||||||
(source
|
(source
|
||||||
|
@ -297,7 +297,7 @@ through a text-based interface.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"15rrnpkv94wx6748hh4sd120v6x25rkbd6vlz6hfrhvjwxz5lgjl"))))
|
"146pv8bj6pv8max1lkm07560b9zcc268c927kff6rcib47qxfnn2"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases (modify-phases %standard-phases
|
'(#:phases (modify-phases %standard-phases
|
||||||
|
@ -311,12 +311,12 @@ through a text-based interface.")
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(if tests?
|
(if tests?
|
||||||
(invoke "python" "setup.py" "nosetests")
|
(invoke "python" "setup.py" "nosetests")
|
||||||
(format #t "test suite not run~")))))))
|
(format #t "test suite not run~%")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list ;; For tests.
|
;; For tests.
|
||||||
python-httpretty python-nose))
|
(list python-httpretty python-nose))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-requests))
|
(list python-requests python-semantic-version))
|
||||||
(synopsis "Python interface to the Zabbix API")
|
(synopsis "Python interface to the Zabbix API")
|
||||||
(description
|
(description
|
||||||
"@code{pyzabbix} is a Python module for working with the Zabbix API.")
|
"@code{pyzabbix} is a Python module for working with the Zabbix API.")
|
||||||
|
|
Reference in a new issue