nixpkgs/pkgs/development/python-modules/av/default.nix

34 lines
657 B
Nix
Raw Normal View History

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