nixpkgs/pkgs/development/python-modules/av/default.nix
R. RyanTM 1d11a3d915
python37Packages.av: 6.1.2 -> 6.2.0
PyAV stopped using nosetest https://github.com/mikeboers/PyAV/pull/514/

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-av/versions
2019-05-12 19:47:14 -05:00

33 lines
591 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, ffmpeg_4
, libav
, pkgconfig
}:
buildPythonPackage rec {
pname = "av";
version = "6.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "1wm33qajxcpl9rn7zfb2pwwqn87idb7ic7h5zwy2hgbpjnh3vc2g";
};
checkInputs = [ numpy ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ffmpeg_4 ];
# Tests require downloading files from internet
doCheck = false;
meta = {
description = "Pythonic bindings for FFmpeg/Libav";
homepage = https://github.com/mikeboers/PyAV/;
license = lib.licenses.bsd2;
};
}