summary refs log tree commit diff
path: root/pkgs/development/python-modules/av/default.nix
blob: 7e68265eed832f9b090804fe95a668e0941719a2 (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
{ lib
, buildPythonPackage
, fetchPypi
, nose
, pillow
, numpy
, ffmpeg_2
, git
, libav
, pkgconfig
}:

buildPythonPackage rec {
  pname = "av";
  version = "0.4.1";

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

  buildInputs = [ nose pillow numpy ffmpeg_2 git libav pkgconfig ];

  # Because of https://github.com/mikeboers/PyAV/issues/152
  doCheck = false;

  meta = {
    description = "Pythonic bindings for FFmpeg/Libav";
    homepage = https://github.com/mikeboers/PyAV/;
    license = lib.licenses.bsd2;
  };
}