summary refs log tree commit diff
path: root/pkgs/development/python-modules/moviepy/default.nix
blob: ab4b97c24552a037593961978a96697f700de79a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, numpy
, decorator
, imageio
, imageio-ffmpeg
, proglog
, requests
, tqdm
  # Advanced image processing (triples size of output)
, advancedProcessing ? false
, opencv3
, scikit-image
, scikit-learn
, scipy
, matplotlib
, youtube-dl
}:

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

  disabled = pythonOlder "3.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2884e35d1788077db3ff89e763c5ba7bfddbd7ae9108c9bc809e7ba58fa433f5";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace "decorator>=4.0.2,<5.0" "decorator>=4.0.2,<6.0"
  '';

  # No tests, require network connection
  doCheck = false;

  propagatedBuildInputs = [
    numpy
    decorator
    imageio
    imageio-ffmpeg
    tqdm
    requests
    proglog
  ] ++ lib.optionals advancedProcessing [
    opencv3
    scikit-image
    scikit-learn
    scipy
    matplotlib
    youtube-dl
  ];

  meta = with lib; {
    description = "Video editing with Python";
    homepage = "https://zulko.github.io/moviepy/";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}