python.pkgs.tinycss2: add pytest to checkInputs

This commit is contained in:
Robert Schütz 2019-03-11 12:56:10 +01:00
parent fe633fb1be
commit fca2c15ca6

View file

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