1{ lib, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "flake8-blind-except"; 5 version = "0.2.0"; 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "02a860a1a19cb602c006a3fe0778035b0d14d3f57929b4b798bc7d6684f204e5"; 9 }; 10 meta = { 11 homepage = "https://github.com/elijahandrews/flake8-blind-except"; 12 description = "A flake8 extension that checks for blind except: statements"; 13 maintainers = with lib.maintainers; [ johbo ]; 14 license = lib.licenses.mit; 15 }; 16}