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
This commit is contained in:
parent
fc374febf2
commit
843e1993ae
@ -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')
|
Loading…
Reference in New Issue
Block a user