diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-10 03:16:09 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:34 +0200 |
| commit | 0fd283c17807ff07d7cdb12f4f40f4ed748171f8 (patch) | |
| tree | faf2c85468078ff83322a46ede3dd6a5bebed490 /gnu/packages/monitoring.scm | |
| parent | f1e81d8dcbb459bb56940efcb6c109433d1321a6 (diff) | |
gnu: Add python-rrdtool.
* gnu/packages/monitoring.scm (python-rrdtool): New variable.
Change-Id: Ifcfcaf745b88016ee2a4f260f0b9bbb77adcbcca
Signed-off-by: Steve George <steve@futurile.net>
Diffstat (limited to 'gnu/packages/monitoring.scm')
| -rw-r--r-- | gnu/packages/monitoring.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 01b554d9aa3..b75500fc088 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | ;;; Copyright © 2022 Hartmut Goebel <h.goebel@crazy-compilers.com> | 14 | ;;; Copyright © 2022 Hartmut Goebel <h.goebel@crazy-compilers.com> |
| 15 | ;;; Copyright © 2022 ( <paren@disroot.org> | 15 | ;;; Copyright © 2022 ( <paren@disroot.org> |
| 16 | ;;; Copyright © 2022 Mathieu Laparie <mlaparie@disr.it> | 16 | ;;; Copyright © 2022 Mathieu Laparie <mlaparie@disr.it> |
| 17 | ;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr> | ||
| 17 | ;;; | 18 | ;;; |
| 18 | ;;; This file is part of GNU Guix. | 19 | ;;; This file is part of GNU Guix. |
| 19 | ;;; | 20 | ;;; |
| @@ -839,6 +840,25 @@ display resumes. | |||
| 839 | @end itemize") | 840 | @end itemize") |
| 840 | (license license:bsd-2))) | 841 | (license license:bsd-2))) |
| 841 | 842 | ||
| 843 | (define-public python-rrdtool | ||
| 844 | (package | ||
| 845 | (name "python-rrdtool") | ||
| 846 | (version "0.1.16") | ||
| 847 | (source | ||
| 848 | (origin | ||
| 849 | (method url-fetch) | ||
| 850 | (uri (pypi-uri "rrdtool" version)) | ||
| 851 | (sha256 | ||
| 852 | (base32 "0l8lbarzfwbwnq9jm9gv4mmrxgjlb9hbz27sa8b703qa7s5zy2jz")))) | ||
| 853 | (build-system pyproject-build-system) | ||
| 854 | (arguments (list #:tests? #f)) ; No tests in pypi archive | ||
| 855 | (inputs (list rrdtool)) | ||
| 856 | (native-inputs (list python-setuptools python-wheel)) | ||
| 857 | (home-page "https://github.com/commx/python-rrdtool") | ||
| 858 | (synopsis "Python bindings for rrdtool") | ||
| 859 | (description "This package provides Python bindings for rrdtool.") | ||
| 860 | (license license:lgpl2.1))) | ||
| 861 | |||
| 842 | (define-public python-statsd | 862 | (define-public python-statsd |
| 843 | (package | 863 | (package |
| 844 | (name "python-statsd") | 864 | (name "python-statsd") |
