summary refs log tree commit diff
path: root/pkgs/development/python-modules/flake8-blind-except/default.nix
blob: c3974d0e007b8774440c0723ad643bd53153a13e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, fetchPypi, buildPythonPackage }:

buildPythonPackage rec {
  pname = "flake8-blind-except";
  version = "0.2.0";
  src = fetchPypi {
    inherit pname version;
    sha256 = "02a860a1a19cb602c006a3fe0778035b0d14d3f57929b4b798bc7d6684f204e5";
  };
  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;
  };
}