python3Packages.sentry-sdk: add missing test dep

The tests will fail with

    ModuleNotFoundError: No module named 'sqlalchemy'

when sqlalchemy is not part of the test inputs, which prevents building
the package. Therefore, add it as a checkInput.
This commit is contained in:
Ruud van Asseldonk 2020-01-14 17:10:30 +01:00 committed by Jon
parent ff3f9d83e2
commit a521953553

View File

@ -13,6 +13,7 @@
, pyramid
, rq
, sanic
, sqlalchemy
, stdenv
, tornado
, urllib3
@ -27,7 +28,7 @@ buildPythonPackage rec {
sha256 = "c6b919623e488134a728f16326c6f0bcdab7e3f59e7f4c472a90eea4d6d8fe82";
};
checkInputs = [ django flask tornado bottle rq falcon ]
checkInputs = [ django flask tornado bottle rq falcon sqlalchemy ]
++ stdenv.lib.optionals isPy3k [ celery pyramid sanic aiohttp ];
propagatedBuildInputs = [ urllib3 certifi ];