diff options
author | a-saitoh-fj <63334055+a-saitoh-fj@users.noreply.github.com> | 2021-03-16 22:57:54 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-16 08:57:54 -0500 |
commit | d36de79ba02252ae3279832e85d9f056af475b11 (patch) | |
tree | 6a76dfcee948070d8c4ca9b3a60d8d495190dc08 | |
parent | 3e570ce694203ad6639534e2b80ec5ef61561f66 (diff) | |
download | spack-d36de79ba02252ae3279832e85d9f056af475b11.tar.gz spack-d36de79ba02252ae3279832e85d9f056af475b11.tar.bz2 spack-d36de79ba02252ae3279832e85d9f056af475b11.tar.xz spack-d36de79ba02252ae3279832e85d9f056af475b11.zip |
py-aiobotocore: New package (#22258)
* py-aiobotocore: New package
* py-aiobotocore: Added python dependencies, and Removed unnecessary whitespace
-rw-r--r-- | var/spack/repos/builtin/packages/py-aiobotocore/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-aiobotocore/package.py b/var/spack/repos/builtin/packages/py-aiobotocore/package.py new file mode 100644 index 0000000000..00deac6247 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-aiobotocore/package.py @@ -0,0 +1,22 @@ +# 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) + +from spack import * + + +class PyAiobotocore(PythonPackage): + """Async client for amazon services using botocore and aiohttp/asyncio.""" + + homepage = "https://aiobotocore.readthedocs.io/en/latest/" + pypi = "aiobotocore/aiobotocore-1.2.1.tar.gz" + + version('1.2.1', sha256='58cc422e65fc89f7cb78eca740d241ac8e15f39f6b308cc23152711e8a987d45') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-botocore@1.19.52', type=('build', 'run')) + depends_on('py-aiohttp@3.3.1:', type=('build', 'run')) + depends_on('py-wrapt@1.10.10:', type=('build', 'run')) + depends_on('py-aioitertools@0.5.1:', type=('build', 'run')) |