mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python2-graphite-web.
* gnu/packages/monitoring.scm (python2-graphite-web): New variable.
This commit is contained in:
parent
a15181bbdb
commit
e7a30ded59
1 changed files with 47 additions and 1 deletions
|
@ -28,11 +28,14 @@ (define-module (gnu packages monitoring)
|
||||||
#:use-module (gnu packages admin)
|
#:use-module (gnu packages admin)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
|
#:use-module (gnu packages django)
|
||||||
#:use-module (gnu packages gd)
|
#:use-module (gnu packages gd)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages mail)
|
#:use-module (gnu packages mail)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages python))
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages python-web)
|
||||||
|
#:use-module (gnu packages time))
|
||||||
|
|
||||||
(define-public nagios
|
(define-public nagios
|
||||||
(package
|
(package
|
||||||
|
@ -215,3 +218,46 @@ (define-public python2-carbon
|
||||||
caching them in memory for \"hot queries\" from the Graphite-Web application,
|
caching them in memory for \"hot queries\" from the Graphite-Web application,
|
||||||
and persisting them to disk using the Whisper time-series library.")
|
and persisting them to disk using the Whisper time-series library.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python2-graphite-web
|
||||||
|
(package
|
||||||
|
(name "python2-graphite-web")
|
||||||
|
(version "1.0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "graphite-web" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0q8bwlj75jqyzmazfsi5sa26xl58ssa8wdxm2l4j0jqyn8xpfnmc"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:python ,python-2 ; only supports Python 2
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'relax-requirements
|
||||||
|
(lambda _
|
||||||
|
(substitute* "setup.py"
|
||||||
|
(("0.4.3") ,(package-version python2-django-tagging))
|
||||||
|
(("<1.9.99") (string-append "<="
|
||||||
|
,(package-version python2-django))))
|
||||||
|
#t))
|
||||||
|
;; Don't install to /opt
|
||||||
|
(add-after 'unpack 'do-not-install-to-/opt
|
||||||
|
(lambda _ (setenv "GRAPHITE_NO_PREFIX" "1") #t)))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python2-cairocffi" ,python2-cairocffi)
|
||||||
|
("python2-pytz" ,python2-pytz)
|
||||||
|
("python2-whisper" ,python2-whisper)
|
||||||
|
("python2-django" ,python2-django)
|
||||||
|
("python2-django-tagging" ,python2-django-tagging)
|
||||||
|
("python2-scandir" ,python2-scandir)
|
||||||
|
("python2-urllib3" ,python2-urllib3)
|
||||||
|
("python2-pyparsing" ,python2-pyparsing)
|
||||||
|
("python2-txamqp" ,python2-txamqp)))
|
||||||
|
(home-page "http://graphiteapp.org/")
|
||||||
|
(synopsis "Scalable realtime graphing system")
|
||||||
|
(description "Graphite is a scalable real-time graphing system that does
|
||||||
|
two things: store numeric time-series data, and render graphs of this data on
|
||||||
|
demand.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
Loading…
Reference in a new issue