openxray: 2188-november-2023-rc1 -> 2921-january-2025-rc1 (#375925)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / requests-cache / default.nix
blobb809576e9ffc3db6d2b0076f1335fa70e6b897e3
2   lib,
3   rel,
4   buildKodiAddon,
5   fetchzip,
6   addonUpdateScript,
7   requests,
8 }:
9 buildKodiAddon rec {
10   pname = "requests-cache";
11   namespace = "script.module.requests-cache";
12   version = "0.5.2+matrix.2";
14   src = fetchzip {
15     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
16     sha256 = "sha256-6M/v/ghS2TnSZhG8bREjxfEfcfLOmvA6hgsa7JUk9Dk=";
17   };
19   propagatedBuildInputs = [
20     requests
21   ];
23   passthru = {
24     pythonPath = "lib";
25     updateScript = addonUpdateScript {
26       attrPath = "kodi.packages.requests-cache";
27     };
28   };
30   meta = with lib; {
31     homepage = "https://github.com/reclosedev/requests-cache";
32     description = "Persistent cache for requests library";
33     license = licenses.bsd2;
34     maintainers = teams.kodi.members;
35   };