
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
27 lines
1.2 KiB
Python
27 lines
1.2 KiB
Python
# Copyright 2013-2021 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)
|
|
|
|
|
|
class PyAiohttp(PythonPackage):
|
|
"""Supports both client and server side of HTTP protocol.
|
|
Supports both client and server Web-Sockets out-of-the-box and
|
|
avoids Callbacks. Provides Web-server with middlewares and
|
|
plugable routing."""
|
|
|
|
homepage = "https://github.com/aio-libs/aiohttp"
|
|
url = "https://github.com/aio-libs/aiohttp/archive/v3.6.2.tar.gz"
|
|
|
|
version('3.6.2', sha256='4ad2d8393843ea0c7b50a93bf04fb1cf20b93c0a5e958de128efcd2e5f8adf80')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('python@3.5.3:', type=('build', 'run'))
|
|
depends_on('py-attrs@17.3.0:', type=('build', 'run'))
|
|
depends_on('py-chardet@2.0:3.999', type=('build', 'run'))
|
|
depends_on('py-multidict@4.5:4.999', type=('build', 'run'))
|
|
depends_on('py-async-timeout@3.0:3.999', type=('build', 'run'))
|
|
depends_on('py-yarl@1.0:1.999', type=('build', 'run'))
|
|
depends_on('py-idna-ssl@1.0:', type=('build', 'run'), when='^python@:3.6')
|
|
depends_on('py-typing-extensions@3.6.5:', type=('build', 'run'), when='^python@:3.6')
|