python3Packages.flake8: 7.2.0 -> 7.3.0 (#418574)

This commit is contained in:
dotlambda
2025-07-03 11:33:01 -07:00
committed by GitHub
3 changed files with 17 additions and 17 deletions
@@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "flake8";
version = "7.2.0";
version = "7.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "PyCQA";
repo = "flake8";
tag = version;
hash = "sha256-TrzGGbMY4+jvy1RvNi02HziCnknfOef+eUekppgK5ck=";
hash = "sha256-dZFIGyjqkd+MRz9NoOEcMuR9ZshFb/h+zO2OJZsQajc=";
};
build-system = [ setuptools ];
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "pycodestyle";
version = "2.13.0";
version = "2.14.0";
pyproject = true;
src = fetchFromGitHub {
owner = "PyCQA";
repo = "pycodestyle";
rev = version;
hash = "sha256-jpF0/sVzRjot8KRdXqvhWpdafzC/Fska6jmG3s2U6Wk=";
tag = version;
hash = "sha256-1EEQp/QEulrdU9tTe28NerQ33IWlAiSlicpmNYciW88=";
};
build-system = [ setuptools ];
@@ -26,7 +26,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
# https://github.com/PyCQA/pycodestyle/blob/2.13.0/tox.ini#L16
# https://github.com/PyCQA/pycodestyle/blob/2.14.0/tox.ini#L16
postCheck = ''
${python.interpreter} -m pycodestyle --statistics pycodestyle.py
'';
@@ -36,12 +36,12 @@ buildPythonPackage rec {
"test_check_nullbytes"
];
meta = with lib; {
changelog = "https://github.com/PyCQA/pycodestyle/blob/${version}/CHANGES.txt";
meta = {
changelog = "https://github.com/PyCQA/pycodestyle/blob/${src.tag}/CHANGES.txt";
description = "Python style guide checker";
mainProgram = "pycodestyle";
homepage = "https://pycodestyle.pycqa.org/";
license = licenses.mit;
maintainers = with maintainers; [ kamadorueda ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kamadorueda ];
};
}
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "pyflakes";
version = "3.3.2";
version = "3.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "PyCQA";
repo = "pyflakes";
rev = version;
hash = "sha256-nNug9EZ0coI095/QJu/eK1Ozlt01INT+mLlYdqrJuzE=";
tag = version;
hash = "sha256-4UEJjn9Eey1vHeaG468x/nMlbfGu3ohZX1R7RR2R5ik=";
};
build-system = [ setuptools ];
@@ -32,12 +32,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pyflakes" ];
meta = with lib; {
meta = {
homepage = "https://github.com/PyCQA/pyflakes";
changelog = "https://github.com/PyCQA/pyflakes/blob/${src.rev}/NEWS.rst";
changelog = "https://github.com/PyCQA/pyflakes/blob/${src.tag}/NEWS.rst";
description = "Simple program which checks Python source files for errors";
mainProgram = "pyflakes";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}