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

17 lines
492 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ lib, fetchPypi, buildPythonPackage }:
2017-02-20 21:16:39 +01:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "flake8-blind-except";
2017-02-20 21:16:39 +01:00
version = "0.1.1";
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2017-02-20 21:16:39 +01:00
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;
};
}