diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-11 23:36:10 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-11 23:36:10 +0200 |
commit | 77eb3008e350c069e0ae8df6a91bf0ebdcfc2ac0 (patch) | |
tree | b899e65aa79099be3f4b27dfcd565bb143681211 /gnu/packages/monitoring.scm | |
parent | f7e8be231806a904e6817e8ab3404b32f2511db2 (diff) | |
parent | b50eaa67642ebc25e9c896f2e700c08610e0a5da (diff) |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/monitoring.scm')
-rw-r--r-- | gnu/packages/monitoring.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 1694f94b98..c14d62c312 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at> ;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be> ;;; Copyright © 2022 Paul A. Patience <paul@apatience.com> +;;; Copyright © 2022 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -743,3 +744,21 @@ snapshots, without displaying anything. When put into the foreground again, display resumes. @end itemize") (license license:bsd-2))) + +(define-public python-statsd + (package + (name "python-statsd") + (version "3.3.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "statsd" version)) + (sha256 + (base32 + "07yxnlalvcglgwa9pjs1clwrmwx7a4575jai7q05jz3g4i6dprp3")))) + (build-system python-build-system) + (native-inputs (list python-mock python-nose)) + (home-page "https://github.com/jsocol/pystatsd") + (synopsis "Simple StatsD client") + (description "StatsD is a friendly front-end to Graphite. This package +provides a simple Python client for the StatsD daemon.") + (license license:expat))) |