about summary refs log tree commit diff
path: root/pkgs/development/python-modules/flake8-debugger/default.nix
blob: b383c5db008391e18b41f77735d20dc27a2db564 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, fetchurl, buildPythonPackage, flake8, nose }:

buildPythonPackage rec {
  name = "flake8-debugger-${version}";
  version = "1.4.0";
  src = fetchurl {
    url = "mirror://pypi/f/flake8-debugger/${name}.tar.gz";
    sha256 = "0chjfa6wvnqjnx778qzahhwvjx1j0rc8ax0ipp5bn70gf47lj62r";
  };
  buildInputs = [ nose ];
  propagatedBuildInputs = [ flake8 ];
  meta = {
    homepage = https://github.com/jbkahn/flake8-debugger;
    description = "ipdb/pdb statement checker plugin for flake8";
    maintainers = with lib.maintainers; [ johbo ];
    license = lib.licenses.mit;
  };
}