biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / youtube / default.nix
blobfaa623f37e298526d7fcdbc313fd1c464dfcbdde
1 { lib, buildKodiAddon, fetchFromGitHub, requests, inputstream-adaptive, inputstreamhelper }:
3 buildKodiAddon rec {
4   pname = "youtube";
5   namespace = "plugin.video.youtube";
6   version = "7.1.0";
8   src = fetchFromGitHub {
9     owner = "anxdpanic";
10     repo = "plugin.video.youtube";
11     rev = "v${version}";
12     hash = "sha256-I3dSGcPQVVhn4RO8CHtn3FG2dheSv4XiDO7w+MtTjRU=";
13   };
15   propagatedBuildInputs = [
16     requests
17     inputstream-adaptive
18     inputstreamhelper
19   ];
21   passthru = {
22     pythonPath = "resources/lib";
23   };
25   meta = with lib; {
26     homepage = "https://github.com/anxdpanic/plugin.video.youtube";
27     description = "YouTube is one of the biggest video-sharing websites of the world";
28     license = licenses.gpl2Only;
29     maintainers = teams.kodi.members;
30   };