1{ stdenv, buildPythonPackage, fetchPypi, urllib3, certifi, django, flask, tornado, sanic, aiohttp, bottle, rq, falcon, pyramid, celery }:
2
3buildPythonPackage rec {
4 pname = "sentry-sdk";
5 version = "0.8.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "f5819df450d7b0696be69a0c6d70a09e4890a3844ee8ccb7a461794135bd5965";
10 };
11
12 checkInputs = [ django flask tornado sanic aiohttp bottle rq falcon pyramid celery ];
13
14 propagatedBuildInputs = [ urllib3 certifi ];
15
16 meta = with stdenv.lib; {
17 homepage = "https://github.com/getsentry/sentry-python";
18 description = "New Python SDK for Sentry.io";
19 license = licenses.bsd2;
20 maintainers = with maintainers; [ gebner ];
21 };
22}