python.pkgs.pylint: add pytestrunner to buildInputs

This commit is contained in:
Robert Scott 2017-05-29 02:07:53 +01:00
parent d2ef1a24b8
commit 21e3b2ff55

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, buildPythonPackage, python, astroid, isort, { stdenv, fetchurl, buildPythonPackage, python, astroid, isort,
pytest, mccabe, configparser, backports_functools_lru_cache }: pytest, pytestrunner, mccabe, configparser, backports_functools_lru_cache }:
buildPythonPackage rec { buildPythonPackage rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
@ -11,7 +11,7 @@
sha256 = "8b4a7ab6cf5062e40e2763c0b4a596020abada1d7304e369578b522e46a6264a"; sha256 = "8b4a7ab6cf5062e40e2763c0b4a596020abada1d7304e369578b522e46a6264a";
}; };
buildInputs = [ pytest mccabe configparser backports_functools_lru_cache ]; buildInputs = [ pytest pytestrunner mccabe configparser backports_functools_lru_cache ];
propagatedBuildInputs = [ astroid isort ]; propagatedBuildInputs = [ astroid isort ];