streamlink: 2.0.0 -> 2.1.1

This commit is contained in:
Robert Schütz 2021-04-25 16:01:46 +02:00
parent 632292a4db
commit 42cca18c8c
2 changed files with 14 additions and 11 deletions
pkgs
applications/video/streamlink
top-level

View File

@ -1,30 +1,29 @@
{ lib { lib
, pythonPackages , python3
, fetchFromGitHub , fetchFromGitHub
, rtmpdump , rtmpdump
, ffmpeg_3 , ffmpeg
}: }:
pythonPackages.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "streamlink"; pname = "streamlink";
version = "2.0.0"; version = "2.1.1";
disabled = pythonPackages.pythonOlder "3.5.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "streamlink"; owner = "streamlink";
repo = "streamlink"; repo = "streamlink";
rev = version; rev = version;
sha256 = "+W9Nu5Ze08r7IlUZOkkVOz582E1Bbj0a3qIQHwxSmj8="; sha256 = "14vqh4pck3q766qln7c57n9bz8zrlgfqrpkdn8x0ac9zhlhfn1zm";
}; };
checkInputs = with pythonPackages; [ checkInputs = with python3.pkgs; [
pytest pytestCheckHook
mock mock
requests-mock requests-mock
freezegun freezegun
]; ];
propagatedBuildInputs = (with pythonPackages; [ propagatedBuildInputs = (with python3.pkgs; [
pycryptodome pycryptodome
requests requests
iso-639 iso-639
@ -33,7 +32,11 @@ pythonPackages.buildPythonApplication rec {
isodate isodate
]) ++ [ ]) ++ [
rtmpdump rtmpdump
ffmpeg_3 ffmpeg
];
disabledTests = [
"test_plugin_not_in_removed_list"
]; ];
meta = with lib; { meta = with lib; {

View File

@ -17621,7 +17621,7 @@ in
stlport = callPackage ../development/libraries/stlport { }; stlport = callPackage ../development/libraries/stlport { };
streamlink = callPackage ../applications/video/streamlink { pythonPackages = python3Packages; }; streamlink = callPackage ../applications/video/streamlink { };
streamlink-twitch-gui-bin = callPackage ../applications/video/streamlink-twitch-gui/bin.nix {}; streamlink-twitch-gui-bin = callPackage ../applications/video/streamlink-twitch-gui/bin.nix {};
sub-batch = callPackage ../applications/video/sub-batch { }; sub-batch = callPackage ../applications/video/sub-batch { };