summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/cssselect2
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-11 13:01:39 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-13 23:49:35 +0100
commit22877838fa7bcf1d4bf9286a1ef96015c36a6158 (patch)
tree4596449b093fcad11166a524a12ea800fddb4673 /pkgs/development/python-modules/cssselect2
parentpython.pkgs.tinycss2: add pytest to checkInputs (diff)
downloadnixpkgs-22877838fa7bcf1d4bf9286a1ef96015c36a6158.tar.gz
python.pkgs.cssselect2: add pytest to checkInputs
Diffstat (limited to 'pkgs/development/python-modules/cssselect2')
-rw-r--r--pkgs/development/python-modules/cssselect2/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/cssselect2/default.nix b/pkgs/development/python-modules/cssselect2/default.nix
index 5fe0f792856e..381c114b44e4 100644
--- a/pkgs/development/python-modules/cssselect2/default.nix
+++ b/pkgs/development/python-modules/cssselect2/default.nix
@@ -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";