hugin: move to openexr_3 (#367087)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / future / default.nix
blob346be9f8d7f5d7d5765450b7353aff1c19db8788
2   lib,
3   rel,
4   buildKodiAddon,
5   fetchzip,
6   addonUpdateScript,
7 }:
9 buildKodiAddon rec {
10   pname = "future";
11   namespace = "script.module.future";
12   version = "1.0.0+matrix.1";
14   src = fetchzip {
15     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
16     sha256 = "sha256-BsDgCAZuJBRBpe6EmfSynhrXS3ktQRZsEwf9CdF0VCg=";
17   };
19   passthru = {
20     pythonPath = "lib";
21     updateScript = addonUpdateScript {
22       attrPath = "kodi.packages.future";
23     };
24   };
26   meta = with lib; {
27     homepage = "https://python-future.org";
28     description = "Missing compatibility layer between Python 2 and Python 3";
29     license = licenses.mit;
30     maintainers = teams.kodi.members;
31   };