
* LBANN: add python dependency and required python library dependencies * LBANN: add version 0.99 as alias for develop branch * LBANN: build Conduit library by default * LBANN: CUB is included with Hydrogen for later versions * New package: py-graphviz (dependency for LBANN) * New package: py-texttable (dependency for LBANN) * New package: py-onnx (dependency for LBANN) * New package: py-typing-extensions (dependency for py-onnx) * Conduit: add version 0.4.0 * NCCL: Add versions 2.4.6-1 and 2.4.2-1 * Protobuf: Add versions 3.7.1 and 3.7.0 * py-protobuf: add version 3.7.1 * py-typing: add version 3.6.4 * cuDNN: add versions. The source differs depending on the architecture, so the versions include a suffix to encode this. For example this adds 7.5.1-10.1-x86_64 as well as 7.5.1-10.1-ppc64le * cuDNN: Newer versions require newer versions of CUDA * Hydrogen: add configure options for CUB and Aluminum
22 lines
910 B
Python
22 lines
910 B
Python
# 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 PyTypingExtensions(PythonPackage):
|
|
"""The typing_extensions module contains both backports of these
|
|
changes as well as experimental types that will eventually be
|
|
added to the typing module, such as Protocol (see PEP 544 for
|
|
details about protocols and static duck typing)."""
|
|
|
|
homepage = "https://github.com/python/typing/tree/master/typing_extensions"
|
|
url = "https://pypi.io/packages/source/t/typing_extensions/typing_extensions-3.7.2.tar.gz"
|
|
|
|
version('3.7.2', sha256='fb2cd053238d33a8ec939190f30cfd736c00653a85a2919415cecf7dc3d9da71')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-typing@3.6.4:', type=('build', 'run'))
|