mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
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
This commit is contained in:
parent
a3437ed164
commit
bb273fc1a0
1 changed files with 15 additions and 9 deletions
|
|
@ -841,15 +841,21 @@ display resumes.
|
|||
(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))
|
||||
(version "4.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "statsd" version))
|
||||
(sha256
|
||||
(base32 "0a6ilx68lxbynfm1slpaa87qs6mhrjm12bfjngvdma7y3fl3sxlr"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:test-flags #~(list "statsd/tests.py")))
|
||||
(native-inputs
|
||||
(list python-pytest
|
||||
python-setuptools
|
||||
python-wheel))
|
||||
(home-page "https://github.com/jsocol/pystatsd")
|
||||
(synopsis "Simple StatsD client")
|
||||
(description "StatsD is a friendly front-end to Graphite. This package
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue