hugin: move to openexr_3 (#367087)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / arteplussept / default.nix
blob056b5bb6a817b3c183dddce5a02cd911b9876ed2
2   lib,
3   rel,
4   buildKodiAddon,
5   fetchzip,
6   addonUpdateScript,
7   dateutil,
8   requests,
9   xbmcswift2,
12 buildKodiAddon rec {
13   pname = "arteplussept";
14   namespace = "plugin.video.arteplussept";
15   version = "1.4.2";
17   src = fetchzip {
18     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
19     hash = "sha256-dqxGKaOnEYOI33Aw76zbjma5z7MqOUh367dFsV87olU=";
20   };
22   propagatedBuildInputs = [
23     dateutil
24     requests
25     xbmcswift2
26   ];
28   passthru = {
29     updateScript = addonUpdateScript {
30       attrPath = "kodi.packages.arteplussept";
31     };
32   };
34   meta = with lib; {
35     homepage = "https://github.com/thomas-ernest/plugin.video.arteplussept";
36     description = "Watch videos available on Arte+7";
37     license = licenses.mit;
38     maintainers = teams.kodi.members;
39   };