python.pkgs.pytest-shutil: add termcolor dependency

This commit is contained in:
Robert Schütz 2018-04-07 14:55:34 +02:00 committed by Frederik Rietdijk
parent d223d125d2
commit fdbb0f9040

View File

@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, fetchPypi { stdenv, buildPythonPackage, fetchPypi
, pytest, cmdline, pytestcov, coverage, setuptools-git, mock, pathpy, execnet , pytest, cmdline, pytestcov, coverage, setuptools-git, mock, pathpy, execnet
, contextlib2 }: , contextlib2, termcolor }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-shutil"; pname = "pytest-shutil";
@ -12,7 +12,7 @@ buildPythonPackage rec {
}; };
buildInputs = [ cmdline pytest ]; buildInputs = [ cmdline pytest ];
propagatedBuildInputs = [ pytestcov coverage setuptools-git mock pathpy execnet contextlib2 ]; propagatedBuildInputs = [ pytestcov coverage setuptools-git mock pathpy execnet contextlib2 termcolor ];
checkPhase = '' checkPhase = ''
py.test py.test