pythonPackages.coveralls: Add missing dependencies to fix build

This commit is contained in:
mingchuan 2017-09-05 17:06:19 +08:00 committed by Frederik Rietdijk
parent 4c183f4b42
commit ea0c1c1bfd

View File

@ -2,12 +2,15 @@
, lib , lib
, fetchPypi , fetchPypi
, mock , mock
, pytest_27 , pytest
, pytestrunner
, sh , sh
, coverage , coverage
, docopt , docopt
, requests , requests
, urllib3
, git , git
, isPy3k
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -21,13 +24,17 @@ buildPythonPackage rec {
sha256 = "510682001517bcca1def9f6252df6ce730fcb9831c62d9fff7c7d55b6fdabdf3"; sha256 = "510682001517bcca1def9f6252df6ce730fcb9831c62d9fff7c7d55b6fdabdf3";
}; };
buildInputs = [ checkInputs = [
mock mock
sh sh
pytest_27 pytest
git git
]; ];
buildInputs = [
pytestrunner
];
# FIXME: tests requires .git directory to be present # FIXME: tests requires .git directory to be present
doCheck = false; doCheck = false;
@ -39,7 +46,7 @@ buildPythonPackage rec {
coverage coverage
docopt docopt
requests requests
]; ] ++ lib.optional (!isPy3k) urllib3;
meta = { meta = {
description = "Show coverage stats online via coveralls.io"; description = "Show coverage stats online via coveralls.io";