summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-06-16 01:43:06 -0500
committerGreg Becker <becker33@llnl.gov>2019-06-16 08:43:06 +0200
commit9a400d13a97c46e0cf45be3a0c84a5cd0e9f6869 (patch)
tree7dd1b9b2441874302613b53d5c7ef28fb0e6b172 /var
parent2a15ab42fe48578da4dcb43df44240aa5b1ba633 (diff)
downloadspack-9a400d13a97c46e0cf45be3a0c84a5cd0e9f6869.tar.gz
spack-9a400d13a97c46e0cf45be3a0c84a5cd0e9f6869.tar.bz2
spack-9a400d13a97c46e0cf45be3a0c84a5cd0e9f6869.tar.xz
spack-9a400d13a97c46e0cf45be3a0c84a5cd0e9f6869.zip
Add new package py-botocore (#11720)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-botocore/package.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-botocore/package.py b/var/spack/repos/builtin/packages/py-botocore/package.py
new file mode 100644
index 0000000000..16877560a2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-botocore/package.py
@@ -0,0 +1,30 @@
+# 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 PyBotocore(PythonPackage):
+ """Low-level, data-driven core of boto 3."""
+
+ homepage = "https://github.com/boto/botocore"
+ url = "https://pypi.io/packages/source/b/botocore/botocore-1.12.169.tar.gz"
+
+ import_modules = ['botocore']
+
+ version('1.12.169', sha256='25b44c3253b5ed1c9093efb57ffca440c5099a2d62fa793e8b6c52e72f54b01e')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-jmespath@0.7.1:0.999', type=('build', 'run'))
+ depends_on('py-docutils@0.10:', type=('build', 'run'))
+ depends_on('py-ordereddict@1.1', type=('build', 'run'), when='^python@2.6.0:2.6.999')
+ depends_on('py-simplejson@3.3.0', type=('build', 'run'), when='^python@2.6.0:2.6.999')
+ depends_on('py-python-dateutil@2.1:2.999', type=('build', 'run'))
+ depends_on('py-python-dateutil@2.1:2.6', type=('build', 'run'), when='^python@2.6.0:2.6.999')
+ depends_on('py-urllib3@1.20:1.25', type=('build', 'run'))
+ depends_on('py-urllib3@1.20:1.23', type=('build', 'run'), when='^python@2.6.0:2.6.999')
+ depends_on('py-urllib3@1.20:1.22', type=('build', 'run'), when='^python@3.3.0:3.3.999')
+ depends_on('py-mock', type='test')
+ depends_on('py-nose', type='test')