summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJustin S <3630356+codeandkey@users.noreply.github.com>2019-10-14 03:42:49 -0500
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2019-10-14 10:42:49 +0200
commitc851cfd1226c6a5db69813d06c82d7631dadbb71 (patch)
tree04b89e2ccdeb542cdf874b860ea67b42c37fdc73 /var
parente1cf35a82b04bd31dff64c260a4a30c741217723 (diff)
downloadspack-c851cfd1226c6a5db69813d06c82d7631dadbb71.tar.gz
spack-c851cfd1226c6a5db69813d06c82d7631dadbb71.tar.bz2
spack-c851cfd1226c6a5db69813d06c82d7631dadbb71.tar.xz
spack-c851cfd1226c6a5db69813d06c82d7631dadbb71.zip
py-smart-open: new package at 1.8.4 (#13135)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-smart-open/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-smart-open/package.py b/var/spack/repos/builtin/packages/py-smart-open/package.py
new file mode 100644
index 0000000000..483e55a6b4
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-smart-open/package.py
@@ -0,0 +1,21 @@
+# 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 PySmartOpen(PythonPackage):
+ """smart_open is a Python 2 & Python 3 library for efficient streaming of
+ very large files from/to S3, HDFS, WebHDFS, HTTP, or local storage. It
+ supports transparent, on-the-fly (de-)compression for a variety of
+ different formats."""
+
+ homepage = "https://github.com/piskvorky/smart_open"
+ url = "https://github.com/RaRe-Technologies/smart_open/archive/1.8.4.tar.gz"
+
+ version('1.8.4', sha256='788e07f035defcbb62e3c1e313329a70b0976f4f65406ee767db73ad5d2d04f9')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-boto3', type=('build', 'run'))