summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-imageio-ffmpeg/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-imageio-ffmpeg/package.py b/var/spack/repos/builtin/packages/py-imageio-ffmpeg/package.py
new file mode 100644
index 0000000000..24f3ef2a5a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-imageio-ffmpeg/package.py
@@ -0,0 +1,25 @@
+# Copyright 2013-2020 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 PyImageioFfmpeg(PythonPackage):
+ """The purpose of this project is to provide a simple and
+ reliable ffmpeg wrapper for working with video files. It
+ implements two simple generator functions for reading and
+ writing data from/to ffmpeg, which reliably terminate the
+ ffmpeg process when done. It also takes care of publishing
+ platform-specific wheels that include the binary ffmpeg
+ executables."""
+
+ homepage = "https://github.com/imageio/imageio-ffmpeg"
+ pypi = "imageio-ffmpeg/imageio-ffmpeg-0.4.3.tar.gz"
+
+ version('0.4.3', sha256='f826260a3207b872f1a4ba87ec0c8e02c00afba4fd03348a59049bdd8215841e')
+
+ depends_on('python@3.4:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('ffmpeg', type='run')