python310Packages.pyflakes: 2.4.0 -> 2.5.0

https://github.com/PyCQA/pyflakes/blob/2.5.0/NEWS.rst
This commit is contained in:
Robert Schütz 2022-08-11 12:02:48 +00:00 committed by Robert Schütz
parent 6ccc885f06
commit b2422f6a3a

View File

@ -1,23 +1,34 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder, unittest2 }:
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyflakes";
version = "2.4.0";
version = "2.5.0";
disabled = pythonOlder "3.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c";
sha256 = "491feb020dca48ccc562a8c0cbe8df07ee13078df59813b83959cbdada312ea3";
};
checkInputs = [ unittest2 ];
checkInputs = [
pytestCheckHook
];
# some tests are output dependent, which have changed slightly
doCheck = pythonOlder "3.9";
pythonImportsCheck = [ "pyflakes" ];
meta = with lib; {
homepage = "https://launchpad.net/pyflakes";
homepage = "https://github.com/PyCQA/pyflakes";
changelog = "https://github.com/PyCQA/pyflakes/blob/${version}/NEWS.rst";
description = "A simple program which checks Python source files for errors";
license = licenses.mit;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ dotlambda ];
};
}