python310Packages.flake8-bugbear: 22.3.23 -> 22.4.25 (#170281)

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
R. RyanTM 2022-04-25 16:29:27 -07:00 committed by GitHub
parent a2e9f7444c
commit e05409c5ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,19 +4,23 @@
, attrs , attrs
, flake8 , flake8
, pytestCheckHook , pytestCheckHook
, pythonOlder
, hypothesis , hypothesis
, hypothesmith , hypothesmith
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "flake8-bugbear"; pname = "flake8-bugbear";
version = "22.3.23"; version = "22.4.25";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "PyCQA"; owner = "PyCQA";
repo = pname; repo = pname;
rev = version; rev = "refs/tags/${version}";
sha256 = "sha256-s1EnPM2He+R+vafu14XI1Xuft8Rg6W3vPH2Atc6N7I0="; hash = "sha256-y/hpBlIQ3aJj3Y1snpArOCIv2w1ncQNMSYJ+G0CeM84=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -32,9 +36,10 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
description = "Plugin for Flake8 to find bugs and design problems";
homepage = "https://github.com/PyCQA/flake8-bugbear"; homepage = "https://github.com/PyCQA/flake8-bugbear";
changelog = "https://github.com/PyCQA/flake8-bugbear/blob/${version}/README.rst#change-log"; changelog = "https://github.com/PyCQA/flake8-bugbear/blob/${version}/README.rst#change-log";
description = '' longDescription = ''
A plugin for flake8 finding likely bugs and design problems in your A plugin for flake8 finding likely bugs and design problems in your
program. program.
''; '';