python313Packages.convertertools: migrate to pytest-cov-stub

Changed files
+5 -5
pkgs
development
python-modules
convertertools
+5 -5
pkgs/development/python-modules/convertertools/default.nix
···
# checks
pytestCheckHook,
+
pytest-cov-stub,
}:
buildPythonPackage rec {
···
hash = "sha256-Oy1Nf/mS2Lr2N7OB27QDlW+uuhafib2kolEXzXLppWU=";
};
-
postPatch = ''
-
sed -i "/--cov/d" pyproject.toml
-
'';
-
build-system = [
cython
poetry-core
setuptools
];
-
nativeCheckInputs = [ pytestCheckHook ];
+
nativeCheckInputs = [
+
pytestCheckHook
+
pytest-cov-stub
+
];
pythonImportsCheck = [ "convertertools" ];