diff options
author | Wamm K. D <jaft.r@outlook.com> | 2022-10-24 11:46:42 -0500 |
---|---|---|
committer | Guix Patches Tester <> | 2022-10-25 21:08:13 +0100 |
commit | 4c48d09a9f7474083cf92ee6cf30494b3c980b9f (patch) | |
tree | fd6f5a9427736d1747a34d333704159ea15f8127 | |
parent | d3e982dccbd8ec7e00a2ab3efa04bef8f1c16b9e (diff) | |
download | guix-patches-4c48d09a9f7474083cf92ee6cf30494b3c980b9f.tar guix-patches-4c48d09a9f7474083cf92ee6cf30494b3c980b9f.tar.gz |
gnu: Add python-rollbar.issue-58764
* gnu/packages/python-xyz.scm (python-rollbar): Add new Python SDK
-rw-r--r-- | gnu/packages/python-xyz.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 51136d8e6e..e8ad49ecb2 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -31233,6 +31233,37 @@ functions @end itemize") (license license:bsd-3))) +(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))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |