python.pkgs.soco: use pytest_3

Otherwise, we get
    [pytest] section in setup.cfg files is no longer supported,
    change to [tool:pytest] instead
This commit is contained in:
Robert Schütz 2019-02-20 19:59:03 +01:00
parent 8cf396442d
commit 4348c8a0ba

View file

@ -1,7 +1,7 @@
{ lib, buildPythonPackage, fetchPypi, xmltodict, requests
# Test dependencies
, pytest, pytestcov, coveralls, pylint, flake8, graphviz, mock, sphinx
, pytest_3, pytestcov, coveralls, pylint, flake8, graphviz, mock, sphinx
, sphinx_rtd_theme
}:
@ -16,7 +16,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ xmltodict requests ];
checkInputs = [
pytest pytestcov coveralls pylint flake8 graphviz mock sphinx
pytest_3 pytestcov coveralls pylint flake8 graphviz mock sphinx
sphinx_rtd_theme
];