1{ lib, fetchurl, buildPythonPackage }:
2
3buildPythonPackage rec {
4 pname = "flake8-blind-except";
5 name = "${pname}-${version}";
6 version = "0.1.1";
7 src = fetchurl {
8 url = "mirror://pypi/f/flake8-blind-except/${name}.tar.gz";
9 sha256 = "16g58mkr3fcn2vlfhp3rlahj93qswc7jd5qrqp748mc26dk3b8xc";
10 };
11 meta = {
12 homepage = https://github.com/elijahandrews/flake8-blind-except;
13 description = "A flake8 extension that checks for blind except: statements";
14 maintainers = with lib.maintainers; [ johbo ];
15 license = lib.licenses.mit;
16 };
17}