about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2020-07-19 20:16:20 -0700
committerGitHub <noreply@github.com>2020-07-19 20:16:20 -0700
commit7df7d37cac4b7094d5104a35f2a06ec14edd0a22 (patch)
tree82beedac6de902ced01563d18dd2d31a11874d8e /pkgs/applications
parentd5fb76608525a66967b3196a8657da19135e75ef (diff)
parent88220fcaf157f8c3a179b614a82d5f8f2f935385 (diff)
Merge pull request #92723 from r-ryantm/auto-update/streamlink
streamlink: 1.4.1 -> 1.5.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/video/streamlink/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix
index c1066bf283a4c..4c8800c918e2e 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -1,14 +1,14 @@
 { stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg_3 }:
 
 pythonPackages.buildPythonApplication rec {
-  version = "1.4.1";
+  version = "1.5.0";
   pname = "streamlink";
 
   src = fetchFromGitHub {
     owner = "streamlink";
     repo = "streamlink";
     rev = version;
-    sha256 = "1q3h48qwf7vs2wnbkwv0xnm6s65mkcyqdz7z6z3vrsmif2sb19l2";
+    sha256 = "00pishpyim3mcvr9njcbfhj79j85b5xhkslk3mspc2csqknw4k61";
   };
 
   checkInputs = with pythonPackages; [ pytest mock requests-mock freezegun ];