python3Packages.behave: use pytest_4

This commit is contained in:
Jonathan Ringer 2019-11-27 19:08:50 -08:00 committed by Jon
parent 289aacbf8c
commit f4f8169021

View file

@ -1,9 +1,10 @@
{ stdenv, fetchPypi, fetchpatch
, buildPythonApplication, python, pythonOlder
, mock, nose, pathpy, pyhamcrest, pytest
, mock, nose, pathpy, pyhamcrest, pytest_4
, glibcLocales, parse, parse-type, six
, traceback2
}:
buildPythonApplication rec {
pname = "behave";
version = "1.2.6";
@ -21,7 +22,7 @@ buildPythonApplication rec {
})
];
checkInputs = [ mock nose pathpy pyhamcrest pytest ];
checkInputs = [ mock nose pathpy pyhamcrest pytest_4 ];
buildInputs = [ glibcLocales ];
propagatedBuildInputs = [ parse parse-type six ] ++ stdenv.lib.optional (pythonOlder "3.0") traceback2;