diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-10 08:39:02 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-10 08:39:10 +0000 |
| commit | bb273fc1a0dcfbb61674ad4d9f6fff9c55c57773 (patch) | |
| tree | 2236e5ca1e53a049923a6693e9c13b8ff73911e4 /gnu/packages/monitoring.scm | |
| parent | a3437ed164f9a1bb13156e323a470a6f1dcb410e (diff) | |
gnu: python-statsd: Update to 4.0.1.
* gnu/packages/monitoring.scm (python-statsd): Update to 4.0.1.
[build-system]: Swap to pyproject-build-system.
[arguments] <test-flags>: Provide path to unit tests.
[native-inputs]: Remove python-mock and python-nose; add python-pytest,
python-setuptools, and python-wheel.
Change-Id: I0d1c97ab2c4de76969d4da6c3af032dc0271ba0b
Diffstat (limited to 'gnu/packages/monitoring.scm')
| -rw-r--r-- | gnu/packages/monitoring.scm | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 185387d96f7..9813b5ca670 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm | |||
| @@ -841,15 +841,21 @@ display resumes. | |||
| 841 | (define-public python-statsd | 841 | (define-public python-statsd |
| 842 | (package | 842 | (package |
| 843 | (name "python-statsd") | 843 | (name "python-statsd") |
| 844 | (version "3.3.0") | 844 | (version "4.0.1") |
| 845 | (source (origin | 845 | (source |
| 846 | (method url-fetch) | 846 | (origin |
| 847 | (uri (pypi-uri "statsd" version)) | 847 | (method url-fetch) |
| 848 | (sha256 | 848 | (uri (pypi-uri "statsd" version)) |
| 849 | (base32 | 849 | (sha256 |
| 850 | "07yxnlalvcglgwa9pjs1clwrmwx7a4575jai7q05jz3g4i6dprp3")))) | 850 | (base32 "0a6ilx68lxbynfm1slpaa87qs6mhrjm12bfjngvdma7y3fl3sxlr")))) |
| 851 | (build-system python-build-system) | 851 | (build-system pyproject-build-system) |
| 852 | (native-inputs (list python-mock python-nose)) | 852 | (arguments |
| 853 | (list | ||
| 854 | #:test-flags #~(list "statsd/tests.py"))) | ||
| 855 | (native-inputs | ||
| 856 | (list python-pytest | ||
| 857 | python-setuptools | ||
| 858 | python-wheel)) | ||
| 853 | (home-page "https://github.com/jsocol/pystatsd") | 859 | (home-page "https://github.com/jsocol/pystatsd") |
| 854 | (synopsis "Simple StatsD client") | 860 | (synopsis "Simple StatsD client") |
| 855 | (description "StatsD is a friendly front-end to Graphite. This package | 861 | (description "StatsD is a friendly front-end to Graphite. This package |
