python313Packages.pydash: migrate to pytest-cov-stub

This commit is contained in:
Peder Bergebakken Sundt 2025-06-02 05:56:35 +02:00
parent caa83eb303
commit 8e9fe51ab2

View file

@ -5,6 +5,7 @@
invoke, invoke,
mock, mock,
pytest7CheckHook, pytest7CheckHook,
pytest-cov-stub,
pythonOlder, pythonOlder,
setuptools, setuptools,
sphinx-rtd-theme, sphinx-rtd-theme,
@ -25,11 +26,6 @@ buildPythonPackage rec {
hash = "sha256-4zNljz0U/iQd2DMC43qkdOY/mwtPlizgLmoaB7BVmxw="; hash = "sha256-4zNljz0U/iQd2DMC43qkdOY/mwtPlizgLmoaB7BVmxw=";
}; };
postPatch = ''
sed -i "/--cov/d" pyproject.toml
sed -i "/--no-cov/d" pyproject.toml
'';
build-system = [ setuptools ]; build-system = [ setuptools ];
dependencies = [ typing-extensions ]; dependencies = [ typing-extensions ];
@ -38,6 +34,7 @@ buildPythonPackage rec {
invoke invoke
mock mock
pytest7CheckHook pytest7CheckHook
pytest-cov-stub
sphinx-rtd-theme sphinx-rtd-theme
]; ];