python3Packages.imageio-ffmpeg: init at 0.2.0

This commit is contained in:
Philipp Middendorf
2019-02-21 09:23:24 +01:00
parent 2ca0cfb0d1
commit 89401b0e3e
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "imageio-ffmpeg";
version = "0.2.0";
src = fetchPypi {
sha256 = "191k77hd69lfmd8p4w02c2ajjdsall6zijn01gyhqi11n48wpsib";
inherit pname version;
};
# No test infrastructure in repository.
doCheck = false;
meta = with stdenv.lib; {
description = "FFMPEG wrapper for Python";
homepage = https://github.com/imageio/imageio-ffmpeg;
license = licenses.bsd2;
maintainers = [ maintainers.pmiddend ];
};
}