10 buildPythonPackage rec {
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
21 hash = "sha256-TfWfSb1GslzcT30/xvBg5Xui7ptp7+g89Fq/giLCoQ8=";
25 substituteInPlace tox.ini --replace "--cov=in_place --no-cov-on-fail" ""
28 nativeBuildInputs = [ setuptools ];
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "in_place" ];
35 description = "In-place file processing";
36 homepage = "https://github.com/jwodder/inplace";
37 changelog = "https://github.com/jwodder/inplace/blob/v${version}/CHANGELOG.md";
38 license = licenses.mit;
39 maintainers = with maintainers; [ samuela ];