python3Packages.sentry-sdk: 1.5.8 -> 1.5.10

This commit is contained in:
Fabian Affolter 2022-04-23 12:59:47 +02:00
parent 65bceb3aa8
commit 8af7727806

View file

@ -28,6 +28,7 @@
, pytest-forked , pytest-forked
, pytest-localserver , pytest-localserver
, pytestCheckHook , pytestCheckHook
, pythonOlder
, rq , rq
, sanic , sanic
, sanic-testing , sanic-testing
@ -40,14 +41,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "sentry-sdk"; pname = "sentry-sdk";
version = "1.5.8"; version = "1.5.10";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "getsentry"; owner = "getsentry";
repo = "sentry-python"; repo = "sentry-python";
rev = version; rev = version;
sha256 = "sha256-28MkwQog+Abk1PSDPWbah650YATiGCBWaTbFO52KgzY="; hash = "sha256-f5V2fMvPpyz+pU08Owzxq9xI48ZeZpH5SmUXtshqMm0=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -56,10 +59,12 @@ buildPythonPackage rec {
]; ];
checkInputs = [ checkInputs = [
aiohttp
asttokens asttokens
blinker blinker
botocore botocore
bottle bottle
celery
chalice chalice
django django
executing executing
@ -67,25 +72,22 @@ buildPythonPackage rec {
falcon falcon
flask_login flask_login
gevent gevent
httpx
jsonschema jsonschema
pure-eval pure-eval
pyramid
pyspark
pytest-django pytest-django
pytest-forked pytest-forked
pytest-localserver pytest-localserver
pytestCheckHook pytestCheckHook
rq rq
sanic
sanic-testing
sqlalchemy sqlalchemy
tornado tornado
trytond trytond
werkzeug werkzeug
] ++ lib.optionals isPy3k [
aiohttp
celery
httpx
pyramid
pyspark
sanic
sanic-testing
]; ];
doCheck = !stdenv.isDarwin; doCheck = !stdenv.isDarwin;