at 18.09-beta 607 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, pillow 6, numpy 7, ffmpeg_2 8, git 9, libav 10, pkgconfig 11}: 12 13buildPythonPackage rec { 14 pname = "av"; 15 version = "0.4.1"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "bf9a8d113392c6a445f424e16f9e64ac53d1db1548731e6326763d555647c24f"; 20 }; 21 22 buildInputs = [ nose pillow numpy ffmpeg_2 git libav pkgconfig ]; 23 24 # Because of https://github.com/mikeboers/PyAV/issues/152 25 doCheck = false; 26 27 meta = { 28 description = "Pythonic bindings for FFmpeg/Libav"; 29 homepage = https://github.com/mikeboers/PyAV/; 30 license = lib.licenses.bsd2; 31 }; 32}