2025-05-25 03:23:49 +02:00

38 lines
822 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pytestCheckHook,
tokenize-rt,
}:
buildPythonPackage rec {
pname = "pyupgrade";
version = "3.19.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "asottile";
repo = "pyupgrade";
rev = "v${version}";
hash = "sha256-bijW1uxoaVKLO0Psv3JeAG6rKeTwGa9ZW06VU1qFrrU=";
};
propagatedBuildInputs = [ tokenize-rt ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyupgrade" ];
meta = with lib; {
description = "Tool to automatically upgrade syntax for newer versions of the language";
mainProgram = "pyupgrade";
homepage = "https://github.com/asottile/pyupgrade";
license = licenses.mit;
maintainers = with maintainers; [ lovesegfault ];
};
}