mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.tunigo: fix tests
This commit is contained in:
parent
cf5b06f9ce
commit
c5d6e665c9
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, requests, mock, nose }:
|
{ lib, buildPythonPackage, fetchFromGitHub, requests, mock, responses, pytest }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tunigo";
|
pname = "tunigo";
|
||||||
|
@ -13,7 +13,11 @@ buildPythonPackage rec {
|
||||||
sha256 = "07q9girrjjffzkn8xj4l3ynf9m4psi809zf6f81f54jdb330p2fs";
|
sha256 = "07q9girrjjffzkn8xj4l3ynf9m4psi809zf6f81f54jdb330p2fs";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ mock nose ];
|
checkInputs = [ mock responses pytest ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python API for the browse feature of Spotify";
|
description = "Python API for the browse feature of Spotify";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue