Skip to content

Commit

Permalink
Remove unnecessary sentry-sdk dependencies causing problems in pyth…
Browse files Browse the repository at this point in the history
…on27 builds
  • Loading branch information
otwieracz committed Oct 28, 2019
1 parent d06a481 commit 2ffa30a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/sentry-sdk/default.nix
@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, urllib3, certifi, django, flask, tornado, sanic, aiohttp, bottle, rq, falcon, pyramid, celery }:
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, urllib3, certifi, django, flask, tornado, bottle, rq, falcon, celery, pyramid, sanic, aiohttp }:

buildPythonPackage rec {
pname = "sentry-sdk";
Expand All @@ -9,7 +9,8 @@ buildPythonPackage rec {
sha256 = "f137cfb8bf709f69fa4634a7debd13284a3a590c374846285875be41d1fe87a8";
};

checkInputs = [ django flask tornado sanic aiohttp bottle rq falcon pyramid celery ];
checkInputs = [ django flask tornado bottle rq falcon ]
++ stdenv.lib.optionals isPy3k [ celery pyramid sanic aiohttp ];

propagatedBuildInputs = [ urllib3 certifi ];

Expand Down

0 comments on commit 2ffa30a

Please sign in to comment.