2018-07-21 10:00:37 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-06-16 22:32:05 +02:00
|
|
|
, isPy27
|
2018-07-21 10:00:37 +02:00
|
|
|
, numpy
|
2020-06-13 04:31:01 +02:00
|
|
|
, ffmpeg
|
2018-07-21 10:00:37 +02:00
|
|
|
, pkgconfig
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "av";
|
2020-06-06 08:46:58 +02:00
|
|
|
version = "8.0.2";
|
2020-06-16 22:32:05 +02:00
|
|
|
disabled = isPy27; # setup.py no longer compatible
|
2018-07-21 10:00:37 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 08:46:58 +02:00
|
|
|
sha256 = "a3bba6bf68766b8a1a057f28869c7078cf0a1ec3207c7788c2ce8fe6f6bd8267";
|
2018-07-21 10:00:37 +02:00
|
|
|
};
|
|
|
|
|
2019-05-12 13:07:18 +02:00
|
|
|
checkInputs = [ numpy ];
|
2019-02-14 08:37:11 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2020-06-13 04:31:01 +02:00
|
|
|
buildInputs = [ ffmpeg ];
|
2018-07-21 10:00:37 +02:00
|
|
|
|
2018-10-08 22:59:49 +02:00
|
|
|
# Tests require downloading files from internet
|
2018-07-21 10:00:37 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Pythonic bindings for FFmpeg/Libav";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/mikeboers/PyAV/";
|
2018-07-21 10:00:37 +02:00
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
};
|
2018-10-08 22:59:49 +02:00
|
|
|
}
|