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
This commit is contained in:
R. RyanTM 2019-05-12 04:07:18 -07:00 committed by Mario Rodas
parent 395bcc0b27
commit 1d11a3d915
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

@ -1,7 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, nose
, numpy , numpy
, ffmpeg_4 , ffmpeg_4
, libav , libav
@ -10,14 +9,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "av"; pname = "av";
version = "6.1.2"; version = "6.2.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "eebbb56eeae650b1fc551f94d51aee39b487bf4df73c39daea186c5d2950650f"; sha256 = "1wm33qajxcpl9rn7zfb2pwwqn87idb7ic7h5zwy2hgbpjnh3vc2g";
}; };
checkInputs = [ nose numpy ]; checkInputs = [ numpy ];
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ffmpeg_4 ]; buildInputs = [ ffmpeg_4 ];