mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add python-rollbar.
* gnu/packages/python-xyz.scm (python-rollbar): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
b59f89cf18
commit
e97ab7fff7
1 changed files with 29 additions and 0 deletions
|
@ -4054,6 +4054,35 @@ (define-public python-roman
|
|||
to Roman Numerals.")
|
||||
(license license:psfl)))
|
||||
|
||||
(define-public python-rollbar
|
||||
(package
|
||||
(name "python-rollbar")
|
||||
(version "0.16.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "rollbar" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1qpd0j50wqli3867xmhwk65pm1cxjs60yg83mcvcf3kic3y3sc82"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs (list python-pytest-runner python-unittest2))
|
||||
(inputs (list python-requests python-six python-httpx python-blinker
|
||||
python-webob))
|
||||
(home-page "https://github.com/rollbar/pyrollbar")
|
||||
(synopsis "Notifier for exceptions, errors, and log messages to Rollbar")
|
||||
(description
|
||||
"Python SDK for reporting exceptions, errors, and log messages
|
||||
to @url{https://rollbar.com/, Rollbar}.
|
||||
|
||||
Capabilities include:
|
||||
|
||||
@itemize @bullet
|
||||
@item Sending messages and exceptions with arbitrary context
|
||||
@item Getting back aggregates
|
||||
@item Debugging production issues
|
||||
@end itemize")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-unidecode
|
||||
(package
|
||||
(name "python-unidecode")
|
||||
|
|
Loading…
Reference in a new issue