about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-12-10 11:39:07 +0100
committerGitHub <noreply@github.com>2022-12-10 11:39:07 +0100
commit701fe61bc90a51c0c2bfae9c31fdbd3278d6ac18 (patch)
tree8f75c42021e081b67aa8a24c1a5076ba69259417 /pkgs/applications/video
parent6c45c43cf1ed3048a9112049ba73ac88ecacaf00 (diff)
parent9a2a145ff374fc23c585223fa3b00bd7124d101f (diff)
Merge pull request #201634 from DeeUnderscore/update/streamlink-5.1.0
streamlink: 5.0.1 -> 5.1.2
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/streamlink/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix
index 9f2487734f024..6aeab3e6e4277 100644
--- a/pkgs/applications/video/streamlink/default.nix
+++ b/pkgs/applications/video/streamlink/default.nix
@@ -6,12 +6,12 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "streamlink";
-  version = "5.0.1";
+  version = "5.1.2";
   format = "pyproject";
 
   src = python3Packages.fetchPypi {
     inherit pname version;
-    hash = "sha256-PKRioPBhTV6i3ckQgcKuhQFmpBvUQE4o3FLej8qx4mM=";
+    hash = "sha256-UB9gTT2/rQXV1Q7UQywEHlGBCJDMDmXupD8nYII4dno=";
   };
 
   checkInputs = with python3Packages; [
@@ -19,6 +19,7 @@ python3Packages.buildPythonApplication rec {
     mock
     requests-mock
     freezegun
+    pytest-asyncio
   ];
 
   nativeBuildInputs = with python3Packages; [
@@ -33,6 +34,7 @@ python3Packages.buildPythonApplication rec {
     pysocks
     requests
     websocket-client
+    urllib3
   ]) ++ [
     ffmpeg
   ];