about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/flake8-debugger/default.nix
blob: aa7e23ecd8df31112f7f6d9e754c48b54e17547d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  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 ];
  };
}