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:
parent
ff3f9d83e2
commit
a521953553
@ -13,6 +13,7 @@
|
|||||||
, pyramid
|
, pyramid
|
||||||
, rq
|
, rq
|
||||||
, sanic
|
, sanic
|
||||||
|
, sqlalchemy
|
||||||
, stdenv
|
, stdenv
|
||||||
, tornado
|
, tornado
|
||||||
, urllib3
|
, urllib3
|
||||||
@ -27,7 +28,7 @@ buildPythonPackage rec {
|
|||||||
sha256 = "c6b919623e488134a728f16326c6f0bcdab7e3f59e7f4c472a90eea4d6d8fe82";
|
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 ];
|
++ stdenv.lib.optionals isPy3k [ celery pyramid sanic aiohttp ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ urllib3 certifi ];
|
propagatedBuildInputs = [ urllib3 certifi ];
|
||||||
|
Loading…
Reference in New Issue
Block a user