pythonPackages.moviepy: init at 0.2.2.11

This commit is contained in:
Frederik Rietdijk 2016-10-25 13:41:06 +02:00
parent 513cadeefa
commit cdd0a5beab

View File

@ -13950,6 +13950,26 @@ in modules // {
};
};
moviepy = buildPythonPackage rec {
name = "moviepy-${version}";
version = "0.2.2.11";
src = pkgs.fetchurl {
url = "mirror://pypi/m/moviepy/${name}.tar.gz";
sha256 = "d937d817e534efc54eaee2fc4c0e70b48fcd81e1528cd6425f22178704681dc3";
};
# No tests
doCheck = false;
propagatedBuildInputs = with self; [ numpy decorator imageio tqdm ];
meta = {
description = "Video editing with Python";
homepage = http://zulko.github.io/moviepy/;
license = licenses.mit;
};
};
munch = buildPythonPackage rec {
name = "munch-${version}";
version = "2.0.4";