Skip to content

Commit

Permalink
pythonPackages.tunigo: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Feb 27, 2018
1 parent cf5b06f commit c5d6e66
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/development/python-modules/tunigo/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub, requests, mock, nose }:
{ lib, buildPythonPackage, fetchFromGitHub, requests, mock, responses, pytest }:

buildPythonPackage rec {
pname = "tunigo";
Expand All @@ -13,7 +13,11 @@ buildPythonPackage rec {
sha256 = "07q9girrjjffzkn8xj4l3ynf9m4psi809zf6f81f54jdb330p2fs";
};

checkInputs = [ mock nose ];
checkInputs = [ mock responses pytest ];

checkPhase = ''
py.test
'';

meta = with lib; {
description = "Python API for the browse feature of Spotify";
Expand Down

0 comments on commit c5d6e66

Please sign in to comment.