Unverified Commit 354d32fd authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #201894 from fabaff/sentry-sdk-bump

python310Packages.sentry-sdk: 1.10.1 -> 1.11.0
parents 9bc6fd58 7304cc95
Loading
Loading
Loading
Loading
+19 −24
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pythonOlder

# runtime
, certifi
, urllib3

# optionals
, aiohttp
, apache-beam
, asttokens
, blinker
, botocore
, bottle
, buildPythonPackage
, celery
, certifi
, chalice
, django
, executing
, falcon
, fetchFromGitHub
, flask
, flask-login
, gevent
, httpx
, jsonschema
, mock
, pure-eval
, pyramid
, pyrsistent
, pyspark
, pytest-forked
, pytest-localserver
, pytest-watch
, pytestCheckHook
, pythonOlder
, rq
, sanic
, sqlalchemy
, tornado
, trytond
, urllib3
, werkzeug

# tests
, asttokens
, executing
, gevent
, jsonschema
, mock
, pyrsistent
, pytest-forked
, pytest-localserver
, pytest-watch
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "sentry-sdk";
  version = "1.10.1";
  version = "1.11.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";
@@ -54,8 +48,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "getsentry";
    repo = "sentry-python";
    rev = version;
    hash = "sha256-wNI92LVGFN+7LPxnrezPeF7dSS5UgwCuF62/ux3rik4=";
    rev = "refs/tags/${version}";
    hash = "sha256-PObYXwWYQ7cC//W3c+n/qceu2ShjFqMGAaLyNflwcL4=";
  };

  propagatedBuildInputs = [
@@ -155,6 +149,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python SDK for Sentry.io";
    homepage = "https://github.com/getsentry/sentry-python";
    changelog = "https://github.com/getsentry/sentry-python/blob/${version}/CHANGELOG.md";
    license = licenses.bsd2;
    maintainers = with maintainers; [ fab gebner ];
  };