diff options
author | Franz Geffke <m@f-a.nz> | 2024-05-10 19:06:22 +0100 |
---|---|---|
committer | Franz Geffke <m@f-a.nz> | 2024-05-10 19:06:22 +0100 |
commit | 4843ae31e47607fea2916d2065adf5b26858942a (patch) | |
tree | a6636a59a8bfa1b4e139d841ede4b7367da494cc /px | |
parent | 3935cb927291f297508b325356c3c85f9d183e34 (diff) |
px: Add python-sentry-sdk
Diffstat (limited to 'px')
-rw-r--r-- | px/packages/python-xyz.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/px/packages/python-xyz.scm b/px/packages/python-xyz.scm index 19e0501..ae0710a 100644 --- a/px/packages/python-xyz.scm +++ b/px/packages/python-xyz.scm @@ -1040,3 +1040,35 @@ upload, and reCAPTCHA.") (synopsis "Massages the state of your system.") (description "Basically ansible, minus a lot of the features, plus speed.") (license license:bsd-3))) + +(define-public python-sentry-sdk-2 + (package + (name "python-sentry-sdk") + (version "2.1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sentry_sdk" version)) + (sha256 + (base32 "1hbfj9dxf705ap7cvx05xsc47f2v5552qb10mcvvrc6886xw1n4m")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f + #:phases + #~(modify-phases %standard-phases + (delete 'sanity-check)))) + (propagated-inputs (list python-certifi + python-urllib3)) + ;; tests + ;; django fails: Requested settings, but settings are not configured. + ; python-starlette + ; python-fastapi + ; python-rq + ; python-loguru + ; python-celery + ; python-dateutil + ; python-django)) + (home-page "https://github.com/getsentry/sentry-python") + (synopsis "Python client for Sentry (https://sentry.io)") + (description "Python client for Sentry (https://sentry.io)") + (license license:expat)))
\ No newline at end of file |