depot/third_party/nixpkgs/pkgs/development/python-modules/flake8-debugger/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

38 lines
741 B
Nix

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