20 lines
693 B
Python
20 lines
693 B
Python
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyPyupgrade(PythonPackage):
|
|
"""A tool to automatically upgrade syntax for newer versions."""
|
|
|
|
homepage = "https://github.com/asottile/pyupgrade"
|
|
pypi = "pyupgrade/pyupgrade-2.31.1.tar.gz"
|
|
|
|
version("2.31.1", sha256="22e0ad6dd39c4381805cb059f1e691b6315c62c0ebcec98a5f29d22cd186a72a")
|
|
|
|
depends_on("python@3.7:", type=("build", "run"))
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-tokenize-rt@3.2:", type=("build", "run"))
|