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

buildPythonPackage rec {
  pname = "flake8-blind-except";
  name = "${pname}-${version}";
  version = "0.1.1";
  src = fetchurl {
    url = "mirror://pypi/f/flake8-blind-except/${name}.tar.gz";
    sha256 = "16g58mkr3fcn2vlfhp3rlahj93qswc7jd5qrqp748mc26dk3b8xc";
  };
  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;
  };
}