From fdbb0f9040b5c0ac5f4a9027a81bc8962c331a75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 7 Apr 2018 14:55:34 +0200 Subject: [PATCH] python.pkgs.pytest-shutil: add termcolor dependency --- pkgs/development/python-modules/pytest-shutil/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-shutil/default.nix b/pkgs/development/python-modules/pytest-shutil/default.nix index 9ab317259bd..4fa11dbd7d1 100644 --- a/pkgs/development/python-modules/pytest-shutil/default.nix +++ b/pkgs/development/python-modules/pytest-shutil/default.nix @@ -1,6 +1,6 @@ { stdenv, buildPythonPackage, fetchPypi , pytest, cmdline, pytestcov, coverage, setuptools-git, mock, pathpy, execnet -, contextlib2 }: +, contextlib2, termcolor }: buildPythonPackage rec { pname = "pytest-shutil"; @@ -12,7 +12,7 @@ buildPythonPackage rec { }; buildInputs = [ cmdline pytest ]; - propagatedBuildInputs = [ pytestcov coverage setuptools-git mock pathpy execnet contextlib2 ]; + propagatedBuildInputs = [ pytestcov coverage setuptools-git mock pathpy execnet contextlib2 termcolor ]; checkPhase = '' py.test