diff options
author | Jen Herting <jen@herting.cc> | 2021-02-08 14:30:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 13:30:45 -0600 |
commit | 843e1993ae7ad05946c57c1c48cff2a835c530ae (patch) | |
tree | fdbb00d5fd1f0bdbc8d0e976533fb720722732a3 /var | |
parent | fc374febf2a9cd977ed1b7d2b1b186a6c4fcc50a (diff) | |
download | spack-843e1993ae7ad05946c57c1c48cff2a835c530ae.tar.gz spack-843e1993ae7ad05946c57c1c48cff2a835c530ae.tar.bz2 spack-843e1993ae7ad05946c57c1c48cff2a835c530ae.tar.xz spack-843e1993ae7ad05946c57c1c48cff2a835c530ae.zip |
New package: py-imageio-ffmpeg (#20749)
* [py-imageio-ffmpeg] created template
* [py-imageio-ffmpeg] added dependencies
* [py-imageio-ffmpeg] added runtime dependency
* [py-imageio-ffmpeg] removed fixmes, added homepage and description
* [py-imageio-ffmpeg] url -> pypi and updated checksum
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-imageio-ffmpeg/package.py | 25 |
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') |