nixpkgs/pkgs/development/python-modules/flake8-blind-except/default.nix
2017-02-21 10:05:16 +01:00

17 lines
537 B
Nix

{ 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;
};
}