flake8-blind-except: init at 0.1.1

This commit is contained in:
Johannes Bornhold
2017-02-20 21:16:39 +01:00
parent c55649ce07
commit 87b9ee7680
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ lib, fetchurl, buildPythonPackage }:
buildPythonPackage rec {
name = "flake8-blind-except-${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;
};
}