Unverified Commit 2fab72ec authored by Aaron Andersen's avatar Aaron Andersen Committed by GitHub
Browse files

Merge pull request #262257 from pks-t/pks-kodi-plugin-video-youtube-7.0.2.2

kodi.packages.youtube: 7.0.1 -> 7.0.2.2
parents 3b9c240c 4b6f568a
Loading
Loading
Loading
Loading
+7 −8
Original line number Diff line number Diff line
{ lib, buildKodiAddon, fetchzip, addonUpdateScript, six, requests, infotagger, inputstreamhelper }:
{ lib, buildKodiAddon, fetchFromGitHub, six, requests, infotagger, inputstreamhelper }:

buildKodiAddon rec {
  pname = "youtube";
  namespace = "plugin.video.youtube";
  version = "7.0.1";
  version = "7.0.2.2";

  src = fetchzip {
    url = "https://mirrors.kodi.tv/addons/nexus/${namespace}/${namespace}-${version}.zip";
    sha256 = "sha256-Wdju7d2kFX0V1J1TB75qEVq0UWN2xYYFNlD8UTt1New=";
  src = fetchFromGitHub {
    owner = "anxdpanic";
    repo = "plugin.video.youtube";
    rev = "v${version}";
    hash = "sha256-BUeE/8oQYBiq4XgIp4nv0hjEQz3nnkDWCnAf4kpptwk=";
  };

  propagatedBuildInputs = [
@@ -19,9 +21,6 @@ buildKodiAddon rec {

  passthru = {
    pythonPath = "resources/lib";
    updateScript = addonUpdateScript {
      attrPath = "kodi.packages.youtube";
    };
  };

  meta = with lib; {