12 buildPythonPackage rec {
13 pname = "flake8-bugbear";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
22 rev = "refs/tags/${version}";
23 hash = "sha256-fGrefEoyEgJE3danv9hG+Os79ixPzurEzLc3Dnj2M3k=";
26 propagatedBuildInputs = [
39 description = "Plugin for Flake8 to find bugs and design problems";
40 homepage = "https://github.com/PyCQA/flake8-bugbear";
41 changelog = "https://github.com/PyCQA/flake8-bugbear/blob/${version}/README.rst#change-log";
43 A plugin for flake8 finding likely bugs and design problems in your
46 license = licenses.mit;
47 maintainers = with maintainers; [ newam ];