biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / requests-cache / default.nix
blob3a71019d9ccbdfb18326046594ee325d469f42db
1 { lib, rel, buildKodiAddon, fetchzip, addonUpdateScript, requests }:
2 buildKodiAddon rec {
3   pname = "requests-cache";
4   namespace = "script.module.requests-cache";
5   version = "0.5.2+matrix.2";
7   src = fetchzip {
8     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
9     sha256 = "sha256-6M/v/ghS2TnSZhG8bREjxfEfcfLOmvA6hgsa7JUk9Dk=";
10   };
12   propagatedBuildInputs = [
13     requests
14   ];
16   passthru = {
17     pythonPath = "lib";
18     updateScript = addonUpdateScript {
19       attrPath = "kodi.packages.requests-cache";
20     };
21   };
23   meta = with lib; {
24     homepage = "https://github.com/reclosedev/requests-cache";
25     description = "Persistent cache for requests library";
26     license = licenses.bsd2;
27     maintainers = teams.kodi.members;
28   };