kodiPackages.youtube: fix dependencies

As per the
changelod (https://github.com/anxdpanic/plugin.video.youtube/blob/master/changelog.txt),
the dependencies on `six` and `infotagger` have been removed a while ago.

Also, a new dependency was added: `inputstream-adaptive`.

Fixes: Annoying popup about enabling `inputstream-adaptive` whenever a video is played.

Tested on linux-x86-64.
This commit is contained in:
Dominik Schrempf 2024-06-03 10:47:55 +02:00
parent 57610d2f8f
commit 08869be075
No known key found for this signature in database
GPG Key ID: 1C0865FAE3B257BB

View File

@ -1,4 +1,4 @@
{ lib, buildKodiAddon, fetchFromGitHub, six, requests, infotagger, inputstreamhelper }:
{ lib, buildKodiAddon, fetchFromGitHub, requests, inputstream-adaptive, inputstreamhelper }:
buildKodiAddon rec {
pname = "youtube";
@ -13,9 +13,8 @@ buildKodiAddon rec {
};
propagatedBuildInputs = [
six
requests
infotagger
inputstream-adaptive
inputstreamhelper
];