mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
2b4bc3769c
"only Python 3.4+ from v.1.0"
37 lines
670 B
Nix
37 lines
670 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonAtLeast
|
|
, numpy
|
|
, decorator
|
|
, imageio
|
|
, imageio-ffmpeg
|
|
, isPy3k
|
|
, proglog
|
|
, requests
|
|
, tqdm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "moviepy";
|
|
version = "1.0.0";
|
|
|
|
disabled = !(pythonAtLeast "3.4");
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "16c7ffca23d90c76dd7b163f648c8166dfd589b7c180b8ff75aa327ae0a2fc6d";
|
|
};
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
propagatedBuildInputs = [ numpy decorator imageio imageio-ffmpeg tqdm requests proglog ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Video editing with Python";
|
|
homepage = http://zulko.github.io/moviepy/;
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|