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