{ lib, buildPythonPackage, fetchPypi, flake8, pycodestyle, pytestCheckHook, }: buildPythonPackage rec { pname = "flake8-debugger"; version = "4.1.2"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-UrACVglB422b+Ab8olI9x/uFYKKV1fGm4VrC3tenOEA="; }; propagatedBuildInputs = [ flake8 pycodestyle ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "flake8_debugger" ]; meta = { description = "ipdb/pdb statement checker plugin for flake8"; homepage = "https://github.com/jbkahn/flake8-debugger"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ johbo ]; }; }