summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorJohannes Frankenau <johannes@frankenau.net>2018-06-29 20:26:52 +0000
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-29 22:26:52 +0200
commit701ddacfb17e9c2f1c0577ef83059c34f81683ad (patch)
tree188f6ddd94d1d8e0f94d7c030ee33d0a761ddb76 /pkgs/applications/video
parent95cb828b2797ab06437d07fabd827128e87199e7 (diff)
downloadnixlib-701ddacfb17e9c2f1c0577ef83059c34f81683ad.tar
nixlib-701ddacfb17e9c2f1c0577ef83059c34f81683ad.tar.gz
nixlib-701ddacfb17e9c2f1c0577ef83059c34f81683ad.tar.bz2
nixlib-701ddacfb17e9c2f1c0577ef83059c34f81683ad.tar.lz
nixlib-701ddacfb17e9c2f1c0577ef83059c34f81683ad.tar.xz
nixlib-701ddacfb17e9c2f1c0577ef83059c34f81683ad.tar.zst
nixlib-701ddacfb17e9c2f1c0577ef83059c34f81683ad.zip
streamlink: 0.13.0 -> 0.14.2 (#42625)
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/streamlink/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix
index 6885caa7d60e..491e6fcd1648 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -1,22 +1,16 @@
 { stdenv, pythonPackages, fetchFromGitHub, rtmpdump, ffmpeg }:
 
 pythonPackages.buildPythonApplication rec {
-  version = "0.13.0";
+  version = "0.14.2";
   name = "streamlink-${version}";
 
   src = fetchFromGitHub {
     owner = "streamlink";
     repo = "streamlink";
     rev = "${version}";
-    sha256 = "17i5j5a69d28abg13md2r2ycxgmd5h1pjy0pgca1zcqaqfq4v05x";
+    sha256 = "1njwfy1h8a9n5z6crrfnknlw4ys0bap2jam6ga6njgkd10aly9qr";
   };
 
-  postPatch = ''
-    # Fix failing test. This can be removed after version 0.13.0, see:
-    # https://github.com/streamlink/streamlink/commit/a27e1a2d8eec6eb23c6e1dc280c6afc1cd0b5b32
-    substituteInPlace tests/test_plugin.py --replace "lambda: datetime" "datetime"
-  '';
-
   checkInputs = with pythonPackages; [ pytest mock requests-mock freezegun ];
 
   propagatedBuildInputs = (with pythonPackages; [ pycryptodome requests iso-639 iso3166 websocket_client isodate ]) ++ [ rtmpdump ffmpeg ];