python313Packages.configupdater: migrate to pytest-cov-stub

Changed files
+5 -6
pkgs
development
python-modules
configupdater
+5 -6
pkgs/development/python-modules/configupdater/default.nix
···
buildPythonPackage,
fetchPypi,
pytestCheckHook,
setuptools-scm,
}:
···
hash = "sha256-n9rFODHBsGKSm/OYtkm4fKMOfxpzXz+/SCBygEEGMGs=";
};
-
postPatch = ''
-
substituteInPlace setup.cfg \
-
--replace '--cov configupdater --cov-report term-missing' ""
-
'';
-
nativeBuildInputs = [ setuptools-scm ];
pythonImportsCheck = [ "configupdater" ];
-
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Parser like ConfigParser but for updating configuration files";
···
buildPythonPackage,
fetchPypi,
pytestCheckHook,
+
pytest-cov-stub,
setuptools-scm,
}:
···
hash = "sha256-n9rFODHBsGKSm/OYtkm4fKMOfxpzXz+/SCBygEEGMGs=";
};
nativeBuildInputs = [ setuptools-scm ];
pythonImportsCheck = [ "configupdater" ];
+
nativeCheckInputs = [
+
pytestCheckHook
+
pytest-cov-stub
+
];
meta = with lib; {
description = "Parser like ConfigParser but for updating configuration files";