9 buildPythonPackage rec {
10 pname = "configupdater";
12 format = "setuptools";
16 pname = "ConfigUpdater";
17 hash = "sha256-n9rFODHBsGKSm/OYtkm4fKMOfxpzXz+/SCBygEEGMGs=";
21 substituteInPlace setup.cfg \
22 --replace '--cov configupdater --cov-report term-missing' ""
25 nativeBuildInputs = [ setuptools-scm ];
27 pythonImportsCheck = [ "configupdater" ];
29 nativeCheckInputs = [ pytestCheckHook ];
32 description = "Parser like ConfigParser but for updating configuration files";
33 homepage = "https://configupdater.readthedocs.io/en/latest/";
34 license = with licenses; [
38 maintainers = with maintainers; [ ris ];