python313Packages.motioneye-client: migrate to pytest-cov-stub

Changed files
+3 -2
pkgs
development
python-modules
motioneye-client
+3 -2
pkgs/development/python-modules/motioneye-client/default.nix
···
fetchFromGitHub,
poetry-core,
pytest-aiohttp,
pytest-timeout,
pytestCheckHook,
pythonOlder,
···
postPatch = ''
substituteInPlace pyproject.toml \
-
--replace 'aiohttp = "^3.8.1,!=3.8.2,!=3.8.3"' 'aiohttp = "*"' \
-
--replace " --cov-report=html:htmlcov --cov-report=xml:coverage.xml --cov-report=term-missing --cov=motioneye_client --cov-fail-under=100" ""
'';
nativeBuildInputs = [ poetry-core ];
···
nativeCheckInputs = [
pytest-aiohttp
pytest-timeout
pytestCheckHook
];
···
fetchFromGitHub,
poetry-core,
pytest-aiohttp,
+
pytest-cov-stub,
pytest-timeout,
pytestCheckHook,
pythonOlder,
···
postPatch = ''
substituteInPlace pyproject.toml \
+
--replace 'aiohttp = "^3.8.1,!=3.8.2,!=3.8.3"' 'aiohttp = "*"'
'';
nativeBuildInputs = [ poetry-core ];
···
nativeCheckInputs = [
pytest-aiohttp
+
pytest-cov-stub
pytest-timeout
pytestCheckHook
];