summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-21 21:22:52 -0300
committerVinicius Monego <monego@posteo.net>2025-06-21 23:27:35 -0300
commit204c6279739d488e814aec340d739a0f8b860a05 (patch)
tree365b9ac58efd4902620cdbd63574102d1e27f106 /gnu/packages/python-xyz.scm
parent4a47bbe15ed4caee967e365474b658ccf2ee20f8 (diff)
gnu: python-rollbar: Update to 1.3.0.
* gnu/packages/python-xyz.scm (python-rollbar): Update to 1.3.0. [build-system]: Use pyproject-build-system. [native-inputs]: Remove python-pytest-runner, python-unittest2. Add python-httpx, python-pytest, python-setuptools, python-webob, python-wheel. [inputs]: Remove python-blinker, python-httpx, python-webob. Change-Id: I5574681595934b64921071a87c03756c6dc1a869
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a9c350a749..d85e61c455 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7269,17 +7269,20 @@ to Roman Numerals.")
(define-public python-rollbar
(package
(name "python-rollbar")
- (version "1.0.0")
+ (version "1.3.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "rollbar" version))
(sha256
(base32
- "1bzkgp4r79d789q15vnjji2gcb34bnksx9l7q9pjkw12kzjbfiv3"))))
- (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))
+ "0ydksca7glb7g026f4f8nsvpyj8qpgv74642hjj4zk4vqgm0552i"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-httpx
+ python-pytest
+ python-setuptools
+ python-webob
+ python-wheel))
+ (inputs (list python-requests))
(home-page "https://github.com/rollbar/pyrollbar")
(synopsis "Notifier for exceptions, errors, and log messages to Rollbar")
(description