Merge pull request #146694 from fabaff/bump-pyupgrade

python3Packages.pyupgrade: 2.29.0 -> 2.29.1
This commit is contained in:
Fabian Affolter 2021-11-20 09:34:02 +01:00 committed by GitHub
commit 8583a20fc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,21 +8,29 @@
buildPythonPackage rec {
pname = "pyupgrade";
version = "2.29.0";
version = "2.29.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "asottile";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Hq58DJe8ZLZSJdhqSxfTaZPnWae2aQFCe7lH+6Y6ABg=";
sha256 = "sha256-fN0+4/EeoMD2c16OgepjDWuUhowMxzM7nB3mkL3iDjc=";
};
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
propagatedBuildInputs = [ tokenize-rt ];
propagatedBuildInputs = [
tokenize-rt
];
pythonImportsCheck = [ "pyupgrade" ];
pythonImportsCheck = [
"pyupgrade"
];
meta = with lib; {
description = "Tool to automatically upgrade syntax for newer versions of the language";