devpi-server: don't depend on pytest-flake8

This commit is contained in:
Robert Schütz 2022-11-27 19:21:43 -08:00 committed by Robert Schütz
parent 02d780efe5
commit e31ad37f10

View file

@ -12,7 +12,6 @@
, platformdirs
, pluggy
, pyramid
, pytest-flake8
, pytestCheckHook
, repoze_lru
, setuptools
@ -37,6 +36,11 @@ buildPythonApplication rec {
sourceRoot = "source/server";
postPatch = ''
substituteInPlace tox.ini \
--replace "--flake8" ""
'';
propagatedBuildInputs = [
aiohttp
appdirs
@ -58,7 +62,6 @@ buildPythonApplication rec {
checkInputs = [
beautifulsoup4
nginx
pytest-flake8
pytestCheckHook
webtest
];