python37Packages.sentry-sdk: Fix tests (#69142)

python37Packages.sentry-sdk: Fix tests
This commit is contained in:
Jörg Thalheim 2019-09-21 08:20:31 +01:00 committed by GitHub
commit e03ef7f7f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, urllib3, certifi }:
{ stdenv, buildPythonPackage, fetchPypi, urllib3, certifi, django, flask, tornado, sanic, aiohttp, bottle, rq, falcon, pyramid, celery }:
buildPythonPackage rec {
pname = "sentry-sdk";
@ -9,6 +9,8 @@ buildPythonPackage rec {
sha256 = "f5819df450d7b0696be69a0c6d70a09e4890a3844ee8ccb7a461794135bd5965";
};
checkInputs = [ django flask tornado sanic aiohttp bottle rq falcon pyramid celery ];
propagatedBuildInputs = [ urllib3 certifi ];
meta = with stdenv.lib; {