Add new package py-boto3 (#11722)
This commit is contained in:
parent
0de9d15a49
commit
ffb7e83e65
1 changed files with 25 additions and 0 deletions
25
var/spack/repos/builtin/packages/py-boto3/package.py
Normal file
25
var/spack/repos/builtin/packages/py-boto3/package.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
# 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 PyBoto3(PythonPackage):
|
||||
"""The AWS SDK for Python."""
|
||||
|
||||
homepage = "https://github.com/boto/boto3"
|
||||
url = "https://pypi.io/packages/source/b/boto3/boto3-1.9.169.tar.gz"
|
||||
|
||||
import_modules = [
|
||||
'boto3', 'boto3.s3', 'boto3.resources', 'boto3.dynamodb',
|
||||
'boto3.docs', 'boto3.ec2'
|
||||
]
|
||||
|
||||
version('1.9.169', sha256='9d8bd0ca309b01265793b7e8d7b88c1df439737d77c8725988f0277bbf58d169')
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-botocore@1.12.169:1.12.999', type=('build', 'run'))
|
||||
depends_on('py-jmespath@0.7.1:0.999', type=('build', 'run'))
|
||||
depends_on('py-s3transfer@0.2.0:0.2.999', type=('build', 'run'))
|
Loading…
Reference in a new issue