summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/py-requests-futures/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-requests-futures/package.py b/var/spack/repos/builtin/packages/py-requests-futures/package.py
new file mode 100644
index 0000000000..e75fdf4d52
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-requests-futures/package.py
@@ -0,0 +1,19 @@
+# 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 PyRequestsFutures(PythonPackage):
+ """Asynchronous Python HTTP Requests for Humans using Futures"""
+
+ homepage = "https://github.com/ross/requests-futures"
+ url = "https://pypi.org/packages/source/r/requests-futures/requests-futures-1.0.0.tar.gz"
+
+ version('1.0.0', sha256='35547502bf1958044716a03a2f47092a89efe8f9789ab0c4c528d9c9c30bc148')
+
+ depends_on('py-setuptools@38.6.1:', type='build')
+ depends_on('py-futures@2.1.3:', type=('build', 'run'), when='^python@:3.1')
+ depends_on('py-requests@1.2.0:', type=('build', 'run'))