flake8-debugger: init at 1.4.0

This commit is contained in:
Johannes Bornhold 2017-02-20 21:10:05 +01:00
parent 96e1fd6a5a
commit c55649ce07
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,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;
};
}

View file

@ -11337,6 +11337,8 @@ in {
};
};
flake8-debugger = callPackage ../development/python-modules/flake8-debugger { };
flaky = buildPythonPackage rec {
name = "flaky-${version}";
version = "3.1.0";