From fca2c15ca6721e0c91be6827b6a7cd55f3e0e1e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 11 Mar 2019 12:56:10 +0100 Subject: [PATCH] python.pkgs.tinycss2: add pytest to checkInputs --- pkgs/development/python-modules/tinycss2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tinycss2/default.nix b/pkgs/development/python-modules/tinycss2/default.nix index 6d0ee30bbb4..21f89e31f37 100644 --- a/pkgs/development/python-modules/tinycss2/default.nix +++ b/pkgs/development/python-modules/tinycss2/default.nix @@ -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";