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