about summary refs log tree commit diff
path: root/pkgs/applications/video/streamlink
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-01-24 00:21:16 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-01-27 16:10:46 +0200
commitfff0daddce4999f0bdd428ee64be40cd8c26152e (patch)
tree90e8c07e433adda91377d2d4faa17a0b3df3a0ea /pkgs/applications/video/streamlink
parente526128aed7b469559dd6b22e2196eb11d2a9ee7 (diff)
streamlink: 0.9.0 -> 0.10.0
Diffstat (limited to 'pkgs/applications/video/streamlink')
-rw-r--r--pkgs/applications/video/streamlink/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix
index 9fd07febbfce2..9ff54bd681f8a 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -1,17 +1,17 @@
 { stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
 
 pythonPackages.buildPythonApplication rec {
-  version = "0.9.0";
+  version = "0.10.0";
   name = "streamlink-${version}";
 
   src = fetchFromGitHub {
     owner = "streamlink";
     repo = "streamlink";
     rev = "${version}";
-    sha256 = "11jczkar3aqsbl5amkm7lsv4fz6xdaydd5izn222wjzsbvnzrcgd";
+    sha256 = "1p9gkwcvqlnv09ihqh71nh82nnmq9ybp1v8d8kd2vhkg1vm5ximn";
   };
 
-  buildInputs = with pythonPackages; [ pytest mock ];
+  checkInputs = with pythonPackages; [ pytest mock requests-mock ];
 
   propagatedBuildInputs = (with pythonPackages; [ pycryptodome requests iso-639 iso3166 websocket_client ]) ++ [ rtmpdump ffmpeg ];