summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-imageio/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-imageio/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-imageio/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-imageio/package.py b/var/spack/repos/builtin/packages/py-imageio/package.py
new file mode 100644
index 0000000000..bff47aa4ee
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-imageio/package.py
@@ -0,0 +1,27 @@
+# Copyright 2013-2018 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 PyImageio(PythonPackage):
+ """ Imageio is a Python library that provides an easy interface
+ to read and write a wide range of image data, including animated
+ images, video, volumetric data, and scientific formats. It is
+ cross-platform, runs on Python 2.7 and 3.4+, and is easy to install."""
+
+ homepage = "http://imageio.github.io/"
+ url = "https://pypi.io/packages/source/i/imageio/imageio-2.3.0.tar.gz"
+
+ version('2.3.0', '4722c4e1c366748abcb18729881cffb8')
+
+ # TODO: Add variants for plugins, and optional dependencies
+
+ # Fix for python 2 if needed.
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-pillow', type=('build', 'run'))
+ depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('ffmpeg', type='run')