flake8-debugger: init at 1.4.0
This commit is contained in:
parent
96e1fd6a5a
commit
c55649ce07
18
pkgs/development/python-modules/flake8-debugger/default.nix
Normal file
18
pkgs/development/python-modules/flake8-debugger/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -11337,6 +11337,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
flake8-debugger = callPackage ../development/python-modules/flake8-debugger { };
|
||||
|
||||
flaky = buildPythonPackage rec {
|
||||
name = "flaky-${version}";
|
||||
version = "3.1.0";
|
||||
|
Loading…
Reference in New Issue
Block a user