{ lib, buildPythonPackage, fetchFromGitHub, colcon, pytest-cov-stub, pytestCheckHook, setuptools, scspell, writableTmpDirAsHomeHook, }: buildPythonPackage rec { pname = "colcon-ed"; version = "0.3.0"; pyproject = true; src = fetchFromGitHub { owner = "colcon"; repo = "colcon-ed"; tag = version; hash = "sha256-QAImFFygKr7atABeyFjH8ZMlckXIL/JM9C1ydM/TDUA="; }; build-system = [ setuptools ]; dependencies = [ colcon ]; nativeCheckInputs = [ pytest-cov-stub pytestCheckHook scspell writableTmpDirAsHomeHook ]; pythonImportsCheck = [ "colcon_ed" ]; disabledTestPaths = [ "test/test_flake8.py" ]; meta = { description = "Extension for colcon-core to edit file in directories"; homepage = "http://colcon.readthedocs.io/"; downloadPage = "https://github.com/colcon/colcon-ed"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ guelakais ]; }; }