mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
flake8-blind-except: init at 0.1.1
This commit is contained in:
parent
c55649ce07
commit
87b9ee7680
|
@ -0,0 +1,16 @@
|
|||
{ lib, fetchurl, buildPythonPackage }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "flake8-blind-except-${version}";
|
||||
version = "0.1.1";
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/f/flake8-blind-except/${name}.tar.gz";
|
||||
sha256 = "16g58mkr3fcn2vlfhp3rlahj93qswc7jd5qrqp748mc26dk3b8xc";
|
||||
};
|
||||
meta = {
|
||||
homepage = https://github.com/elijahandrews/flake8-blind-except;
|
||||
description = "A flake8 extension that checks for blind except: statements";
|
||||
maintainers = with lib.maintainers; [ johbo ];
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
|
@ -11337,6 +11337,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
flake8-blind-except = callPackage ../development/python-modules/flake8-blind-except { };
|
||||
|
||||
flake8-debugger = callPackage ../development/python-modules/flake8-debugger { };
|
||||
|
||||
flaky = buildPythonPackage rec {
|
||||
|
|
Loading…
Reference in a new issue