python312Packages.pytest-flake8: 1.2.2 -> 1.3.0 (#354743)

This commit is contained in:
Theodore Ni 2024-11-10 14:23:00 -08:00 committed by GitHub
commit 96115f6566
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,16 +10,16 @@
buildPythonPackage rec {
pname = "pytest-flake8";
version = "1.2.2";
version = "1.3.0";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "coherent-oss";
repo = "pytest-flake8";
rev = "refs/tags/v${version}";
hash = "sha256-FsJysBj5S5HHGay+YZKMgb9RdUN637J+FfNl+m9l6ik=";
hash = "sha256-uc5DOqqdoLfhzI2ogDOqhbJOHzdu+uqSOojIH+S1LZI=";
};
build-system = [ setuptools-scm ];
@ -29,8 +29,6 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
meta = {
# https://github.com/coherent-oss/pytest-flake8/issues/3
broken = lib.versionAtLeast flake8.version "6";
changelog = "https://github.com/coherent-oss/pytest-flake8/blob/${src.rev}/NEWS.rst";
description = "py.test plugin for efficiently checking PEP8 compliance";
homepage = "https://github.com/coherent-oss/pytest-flake8";