2018-06-23 06:27:58 -07:00
|
|
|
{ lib, fetchPypi, buildPythonPackage }:
|
2017-02-20 12:16:39 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "flake8-blind-except";
|
2021-01-15 09:20:59 -08:00
|
|
|
version = "0.2.0";
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-15 09:20:59 -08:00
|
|
|
sha256 = "02a860a1a19cb602c006a3fe0778035b0d14d3f57929b4b798bc7d6684f204e5";
|
2017-02-20 12:16:39 -08:00
|
|
|
};
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/elijahandrews/flake8-blind-except";
|
2017-02-20 12:16:39 -08:00
|
|
|
description = "A flake8 extension that checks for blind except: statements";
|
|
|
|
maintainers = with lib.maintainers; [ johbo ];
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|