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.
wip/yesman
Ruud van Asseldonk 4 years ago committed by Jon
parent ff3f9d83e2
commit a521953553
  1. 3
      pkgs/development/python-modules/sentry-sdk/default.nix

@ -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 ];

Loading…
Cancel
Save