Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ff3f9d83e212
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a52195355312
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 14, 2020

  1. 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.
    ruuda authored and Jon committed Jan 14, 2020
    Copy the full SHA
    a521953 View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 pkgs/development/python-modules/sentry-sdk/default.nix
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/sentry-sdk/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];