Add py-mypy package (#13282)

This commit is contained in:
Adam J. Stewart 2019-10-20 11:10:22 -05:00 committed by GitHub
parent 9ac7e098d9
commit 92a359e4ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,26 @@
# Copyright 2013-2019 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 PyMypy(PythonPackage):
"""Optional static typing for Python."""
homepage = "http://www.mypy-lang.org/"
url = "https://pypi.io/packages/source/m/mypy/mypy-0.740.tar.gz"
version('0.740', sha256='48c8bc99380575deb39f5d3400ebb6a8a1cb5cc669bbba4d3bb30f904e0a0e7d')
depends_on('python@3.5:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-typed-ast@1.4.0:1.4.999', type=('build', 'run'))
depends_on('py-typing-extensions@3.7.4:', type=('build', 'run'))
depends_on('py-mypy-extensions@0.4.0:0.4.999', type=('build', 'run'))
depends_on('py-pytest', type='test')
depends_on('py-virtualenv', type='test')
depends_on('py-pip', type='test')
depends_on('py-lxml', type='test')
depends_on('googletest', type='test')