nixpkgs/pkgs/development/python-modules/flake8-blind-except/default.nix

18 lines
559 B
Nix
Raw Normal View History

2017-02-20 20:16:39 +00:00
{ lib, fetchurl, buildPythonPackage }:
buildPythonPackage rec {
pname = "flake8-blind-except";
name = "${pname}-${version}";
2017-02-20 20:16:39 +00:00
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;
};
}