Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a1b46bd12525
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 12feda3aff5b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 2, 2019

  1. Remove unnecessary sentry-sdk dependencies causing problems in pyth…

    …on27 builds
    
    (cherry picked from commit 2ffa30a)
    otwieracz authored and gebner committed Nov 2, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    eps1lon Sebastian "Sebbie" Silbermann
    Copy the full SHA
    12feda3 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/development/python-modules/sentry-sdk/default.nix
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/sentry-sdk/default.nix
Original file line number Diff line number Diff line change
@@ -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";
@@ -9,7 +9,8 @@ buildPythonPackage rec {
sha256 = "f5819df450d7b0696be69a0c6d70a09e4890a3844ee8ccb7a461794135bd5965";
};

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