python.pkgs.cssselect2: add pytest to checkInputs

This commit is contained in:
Robert Schütz 2019-03-11 13:01:39 +01:00
parent fca2c15ca6
commit 22877838fa

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, tinycss2, pytestrunner, pytestcov, pytest-flake8, pytest-isort, glibcLocales }:
{ lib, buildPythonPackage, fetchPypi, tinycss2, pytest, pytestrunner, pytestcov, pytest-flake8, pytest-isort, glibcLocales }:
buildPythonPackage rec {
pname = "cssselect2";
@ -11,7 +11,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ tinycss2 ];
checkInputs = [ pytestrunner pytestcov pytest-flake8 pytest-isort glibcLocales ];
checkInputs = [ pytest pytestrunner pytestcov pytest-flake8 pytest-isort glibcLocales ];
LC_ALL = "en_US.UTF-8";