diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-02-04 11:45:13 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-02-04 11:46:10 +0100 |
commit | 05b4b3ea05b2a9e0c769fe3418c54a2819447a25 (patch) | |
tree | fb20115546d83d8df92b71a3e567f8a17d802862 /gnu/packages/python-xyz.scm | |
parent | 15218d4e18dab06c1071370e12e95a84210a59e8 (diff) | |
download | patches-05b4b3ea05b2a9e0c769fe3418c54a2819447a25.tar patches-05b4b3ea05b2a9e0c769fe3418c54a2819447a25.tar.gz |
gnu: python-prometheus-client: Remove duplicate.
* gnu/packages/monitoring.scm (python-prometheus-client): Update to 0.5.0.
* gnu/packages/python-xyz.scm (python-prometheus-client,
python2-prometheus-client): Remove variables.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 992a750911..ae3e005be2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6732,31 +6732,6 @@ convert an @code{.ipynb} notebook file into various static formats including: (define-public python2-nbconvert (package-with-python2 python-nbconvert)) -(define-public python-prometheus-client - (package - (name "python-prometheus-client") - (version "0.5.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "prometheus_client" version)) - (sha256 - (base32 - "0g7rpv1pq2lab1nfqdx98z9d3bqwc400alg1j4ynrpjkrbsizhg8")))) - (build-system python-build-system) - (arguments '(#:tests? #f)) ; tests are not included - (propagated-inputs - `(("python-twisted" ,python-twisted))) - (home-page "https://github.com/prometheus/client_python") - (synopsis "Python client for the Prometheus monitoring system") - (description - "This package provides a Python client for the Prometheus monitoring -system.") - (license license:asl2.0))) - -(define-public python2-prometheus-client - (package-with-python2 python-prometheus-client)) - (define-public python-notebook (package (name "python-notebook") |