summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorzraexy <zraexy@gmail.com>2017-09-12 12:39:08 -0800
committerzraexy <zraexy@gmail.com>2017-09-12 12:39:08 -0800
commite87a72caef69a99e0340b87d946c5d01e86ebf15 (patch)
tree383e826593289c27cc07d052ccb68c0140fd5b45 /pkgs/applications
parent3c14ef0c4ae4811d2321714adf81662646ff971e (diff)
downloadnixpkgs-e87a72caef69a99e0340b87d946c5d01e86ebf15.tar
nixpkgs-e87a72caef69a99e0340b87d946c5d01e86ebf15.tar.gz
nixpkgs-e87a72caef69a99e0340b87d946c5d01e86ebf15.tar.bz2
nixpkgs-e87a72caef69a99e0340b87d946c5d01e86ebf15.tar.lz
nixpkgs-e87a72caef69a99e0340b87d946c5d01e86ebf15.tar.xz
nixpkgs-e87a72caef69a99e0340b87d946c5d01e86ebf15.tar.zst
nixpkgs-e87a72caef69a99e0340b87d946c5d01e86ebf15.zip
streamlink: 0.7.0 -> 0.8.1
Diffstat (limited to 'pkgs/applications')
-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 1c92d66bcfc..f8d983b1a68 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -1,19 +1,19 @@
 { stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
 
 pythonPackages.buildPythonApplication rec {
-  version = "0.7.0";
+  version = "0.8.1";
   name = "streamlink-${version}";
 
   src = fetchFromGitHub {
     owner = "streamlink";
     repo = "streamlink";
     rev = "${version}";
-    sha256 = "0knh7lw6bv1vix3p40hjp5lc0z9pavvx6rncviw5h095rzcw5287";
+    sha256 = "0l09vp108dw6d9d9rri2xwlr49mr5nkrlxbivr4kk5jbaczjp9xm";
   };
 
   buildInputs = with pythonPackages; [ pytest mock ];
 
-  propagatedBuildInputs = (with pythonPackages; [ pycryptodome requests iso-639 iso3166 ]) ++ [ rtmpdump ffmpeg ];
+  propagatedBuildInputs = (with pythonPackages; [ pycryptodome requests iso-639 iso3166 websocket_client ]) ++ [ rtmpdump ffmpeg ];
 
   meta = with stdenv.lib; {
     homepage = https://github.com/streamlink/streamlink;