about summary refs log tree commit diff
path: root/pkgs/development/python-modules/av
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2019-05-12 04:07:18 -0700
committerMario Rodas <marsam@users.noreply.github.com>2019-05-12 19:47:14 -0500
commit1d11a3d9157090c86baf040fa571ba5c1016e2a0 (patch)
tree92147207a11cc58e2ac60edd39337a233699c3a9 /pkgs/development/python-modules/av
parent395bcc0b27ce0d3c8a9af09737ba076a089a8dd6 (diff)
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
Diffstat (limited to 'pkgs/development/python-modules/av')
-rw-r--r--pkgs/development/python-modules/av/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/av/default.nix b/pkgs/development/python-modules/av/default.nix
index 84c9b21f933e5..c32719140ea74 100644
--- a/pkgs/development/python-modules/av/default.nix
+++ b/pkgs/development/python-modules/av/default.nix
@@ -1,7 +1,6 @@
 { lib
 , buildPythonPackage
 , fetchPypi
-, nose
 , numpy
 , ffmpeg_4
 , libav
@@ -10,14 +9,14 @@
 
 buildPythonPackage rec {
   pname = "av";
-  version = "6.1.2";
+  version = "6.2.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "eebbb56eeae650b1fc551f94d51aee39b487bf4df73c39daea186c5d2950650f";
+    sha256 = "1wm33qajxcpl9rn7zfb2pwwqn87idb7ic7h5zwy2hgbpjnh3vc2g";
   };
 
-  checkInputs = [ nose numpy ];
+  checkInputs = [ numpy ];
 
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ ffmpeg_4 ];