summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 15:11:20 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 15:11:20 +0000
commitc26faeee46c31d9f197bc895224e46ce31974bf2 (patch)
tree71fefa7529d332ee9ed9e1ba83cb4f5be887cad1 /gnu/packages
parentb7b2b5b6b933fe4ced658d7f2b445c0fd2237b8d (diff)
gnu: python-pyzabbix: Move to python-web.
This is an intermediate Python module communicating with Zabbix API via HTTP, the best place is (gnu packages python-web). * gnu/packages/monitoring.scm (python-pyzabbix): Move from here ... * gnu/packages/python-web.scm: ... to here. Change-Id: I7ef6b03b6f33310b2470b4adaf60be87dec19f6b
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/monitoring.scm29
-rw-r--r--gnu/packages/python-web.scm29
2 files changed, 29 insertions, 29 deletions
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm
index 7324e1d8538..b6060cf26be 100644
--- a/gnu/packages/monitoring.scm
+++ b/gnu/packages/monitoring.scm
@@ -404,35 +404,6 @@ monitoring system. It can configure and display various aspects of Zabbix
404through a text-based interface.") 404through a text-based interface.")
405 (license license:gpl3+))) 405 (license license:gpl3+)))
406 406
407(define-public python-pyzabbix
408 (package
409 (name "python-pyzabbix")
410 (version "1.3.1")
411 (source
412 (origin
413 (method git-fetch)
414 (uri (git-reference
415 (url "https://github.com/lukecyca/pyzabbix")
416 (commit version)))
417 (file-name (git-file-name name version))
418 (sha256
419 (base32 "1dbs3bz1mjlvlg46ikhg5j7agwni61ljlpiziknklv95yp29n86v"))))
420 (build-system pyproject-build-system)
421 (arguments
422 (list #:test-flags #~(list "tests")))
423 (native-inputs
424 (list python-pytest
425 python-requests-mock
426 python-setuptools))
427 (propagated-inputs
428 (list python-packaging
429 python-requests))
430 (home-page "https://github.com/lukecyca/pyzabbix")
431 (synopsis "Python interface to the Zabbix API")
432 (description
433 "@code{pyzabbix} is a Python module for working with the Zabbix API.")
434 (license license:lgpl2.1+)))
435
436(define-public darkstat 407(define-public darkstat
437 (package 408 (package
438 (name "darkstat") 409 (name "darkstat")
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index f3b725a9a29..b3159a0290e 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2905,6 +2905,35 @@ the CloudFormation spec and additional checks. Includes checking valid values
2905for resource properties and best practices.") 2905for resource properties and best practices.")
2906 (license license:expat))) 2906 (license license:expat)))
2907 2907
2908(define-public python-pyzabbix
2909 (package
2910 (name "python-pyzabbix")
2911 (version "1.3.1")
2912 (source
2913 (origin
2914 (method git-fetch)
2915 (uri (git-reference
2916 (url "https://github.com/lukecyca/pyzabbix")
2917 (commit version)))
2918 (file-name (git-file-name name version))
2919 (sha256
2920 (base32 "1dbs3bz1mjlvlg46ikhg5j7agwni61ljlpiziknklv95yp29n86v"))))
2921 (build-system pyproject-build-system)
2922 (arguments
2923 (list #:test-flags #~(list "tests")))
2924 (native-inputs
2925 (list python-pytest
2926 python-requests-mock
2927 python-setuptools))
2928 (propagated-inputs
2929 (list python-packaging
2930 python-requests))
2931 (home-page "https://github.com/lukecyca/pyzabbix")
2932 (synopsis "Python interface to the Zabbix API")
2933 (description
2934 "@code{pyzabbix} is a Python module for working with the Zabbix API.")
2935 (license license:lgpl2.1+)))
2936
2908(define-public python-requests-cache 2937(define-public python-requests-cache
2909 (package 2938 (package
2910 (name "python-requests-cache") 2939 (name "python-requests-cache")