mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
python37Packages.sentry-sdk: Fix tests
The tests depend on many third-party libraries, presumably because Sentry offers integration for each of them. I added these as build inputs but not propagated build inputs, because they are only needed for the tests.
This commit is contained in:
parent
6c3bf80a75
commit
ce6145dedc
@ -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";
|
||||
};
|
||||
|
||||
buildInputs = [ django flask tornado sanic aiohttp bottle rq falcon pyramid celery ];
|
||||
|
||||
propagatedBuildInputs = [ urllib3 certifi ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user