nixpkgs/pkgs/applications/video/kodi/addons/youtube/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
775 B
Nix
Raw Normal View History

{ lib, buildKodiAddon, fetchFromGitHub, six, requests, infotagger, inputstreamhelper }:
buildKodiAddon rec {
pname = "youtube";
namespace = "plugin.video.youtube";
2024-04-27 01:15:57 +00:00
version = "7.0.6";
src = fetchFromGitHub {
owner = "anxdpanic";
repo = "plugin.video.youtube";
rev = "v${version}";
2024-04-27 01:15:57 +00:00
hash = "sha256-pxW45D/tppUTTgeR5wVteOP2f4TZ4wl/9A5IBhOZhTM=";
};
propagatedBuildInputs = [
six
requests
infotagger
inputstreamhelper
];
2021-07-20 23:58:09 +00:00
passthru = {
pythonPath = "resources/lib";
};
meta = with lib; {
homepage = "https://github.com/anxdpanic/plugin.video.youtube";
description = "YouTube is one of the biggest video-sharing websites of the world";
license = licenses.gpl2Only;
maintainers = teams.kodi.members;
};
}