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.

authored by

Ruud van Asseldonk and committed by
Jon
a5219535 ff3f9d83

+2 -1
+2 -1
pkgs/development/python-modules/sentry-sdk/default.nix
··· 13 13 , pyramid 14 14 , rq 15 15 , sanic 16 + , sqlalchemy 16 17 , stdenv 17 18 , tornado 18 19 , urllib3 ··· 27 28 sha256 = "c6b919623e488134a728f16326c6f0bcdab7e3f59e7f4c472a90eea4d6d8fe82"; 28 29 }; 29 30 30 - checkInputs = [ django flask tornado bottle rq falcon ] 31 + checkInputs = [ django flask tornado bottle rq falcon sqlalchemy ] 31 32 ++ stdenv.lib.optionals isPy3k [ celery pyramid sanic aiohttp ]; 32 33 33 34 propagatedBuildInputs = [ urllib3 certifi ];