summary refs log tree commit diff
path: root/pkgs/development/python-modules/moviepy/default.nix
blob: 63613b516868292359c783431054c42df2750ee4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
, decorator
, imageio
, tqdm
}:

buildPythonPackage rec {
  pname = "moviepy";
  version = "0.2.2.11";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d937d817e534efc54eaee2fc4c0e70b48fcd81e1528cd6425f22178704681dc3";
  };

  # No tests
  doCheck = false;
  propagatedBuildInputs = [ numpy decorator imageio tqdm ];

  meta = with stdenv.lib; {
    description = "Video editing with Python";
    homepage = http://zulko.github.io/moviepy/;
    license = licenses.mit;
  };

}