easytier: 2.1.1 -> 2.1.2 (#376259)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / youtube / default.nix
blobfb4e6ebd7304c41f82103762fb1ff900bc512708
2   lib,
3   buildKodiAddon,
4   fetchFromGitHub,
5   requests,
6   inputstream-adaptive,
7   inputstreamhelper,
8 }:
10 buildKodiAddon rec {
11   pname = "youtube";
12   namespace = "plugin.video.youtube";
13   version = "7.1.1.6";
15   src = fetchFromGitHub {
16     owner = "anxdpanic";
17     repo = "plugin.video.youtube";
18     rev = "v${version}";
19     hash = "sha256-fcr7FDTaStr9EaEaC3QG3uJQav0YuEITa62Y1kW1vlM=";
20   };
22   propagatedBuildInputs = [
23     requests
24     inputstream-adaptive
25     inputstreamhelper
26   ];
28   passthru = {
29     pythonPath = "resources/lib";
30   };
32   meta = with lib; {
33     homepage = "https://github.com/anxdpanic/plugin.video.youtube";
34     description = "YouTube is one of the biggest video-sharing websites of the world";
35     license = licenses.gpl2Only;
36     maintainers = teams.kodi.members;
37   };