py-pyupgrade: add new package (#29747)
This commit is contained in:
parent
ae76834f3d
commit
831346a3fb
2 changed files with 36 additions and 0 deletions
19
var/spack/repos/builtin/packages/py-pyupgrade/package.py
Normal file
19
var/spack/repos/builtin/packages/py-pyupgrade/package.py
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# Copyright 2013-2022 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 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'))
|
17
var/spack/repos/builtin/packages/py-tokenize-rt/package.py
Normal file
17
var/spack/repos/builtin/packages/py-tokenize-rt/package.py
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# Copyright 2013-2022 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 import *
|
||||||
|
|
||||||
|
|
||||||
|
class PyTokenizeRt(PythonPackage):
|
||||||
|
"""A wrapper around the stdlib `tokenize` which roundtrips."""
|
||||||
|
|
||||||
|
homepage = "https://github.com/asottile/tokenize-rt"
|
||||||
|
pypi = "tokenize_rt/tokenize_rt-4.2.1.tar.gz"
|
||||||
|
|
||||||
|
version('4.2.1', sha256='0d4f69026fed520f8a1e0103aa36c406ef4661417f20ca643f913e33531b3b94')
|
||||||
|
|
||||||
|
depends_on('python@3.6.1:', type=('build', 'run'))
|
Loading…
Reference in a new issue