Merge pull request #131743 from DeeUnderscore/streamlink-2.3.0

streamlink: 2.2.0 -> 2.3.0
This commit is contained in:
Sandro 2021-07-28 12:52:00 +00:00 committed by GitHub
commit cb12f0cd03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,13 +7,13 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "streamlink"; pname = "streamlink";
version = "2.2.0"; version = "2.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "streamlink"; owner = "streamlink";
repo = "streamlink"; repo = "streamlink";
rev = version; rev = version;
sha256 = "1323v1pavmbb2vk3djdkxd8j6i3yrcgrkyl2d7xwkb7nwlla1x1v"; sha256 = "sha256-lsurDFvVHn1rxR3bgG7BY512ISavpja36/UaKXauf+g=";
}; };
checkInputs = with python3.pkgs; [ checkInputs = with python3.pkgs; [
@ -35,9 +35,11 @@ python3.pkgs.buildPythonApplication rec {
ffmpeg ffmpeg
]; ];
disabledTests = [ # note that upstream currently uses requests 2.25.1 in Windows builds
"test_plugin_not_in_removed_list" postPatch = ''
]; substituteInPlace setup.py \
--replace 'requests>=2.26.0,<3.0' 'requests>=2.25.1,<3.0'
'';
meta = with lib; { meta = with lib; {
homepage = "https://github.com/streamlink/streamlink"; homepage = "https://github.com/streamlink/streamlink";