about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/kodi-packages/requests-cache/default.nix
blob: de785ab9bb52305ead5a2093ecbcf8e38c311e4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, buildKodiAddon, fetchzip, addonUpdateScript, requests }:
buildKodiAddon rec {
  pname = "requests-cache";
  namespace = "script.module.requests-cache";
  version = "0.5.2+matrix.2";

  src = fetchzip {
    url = "https://mirrors.kodi.tv/addons/matrix/${namespace}/${namespace}-${version}.zip";
    sha256 = "0fgl4jayq6hbhqxg16nfy9qizwf54c8nvg0icv93knaj13zfzkz8";
  };

  propagatedBuildInputs = [
    requests
  ];

  passthru = {
    pythonPath = "lib";
    updateScript = addonUpdateScript {
      attrPath = "kodi.packages.requests-cache";
    };
  };

  meta = with lib; {
    homepage = "https://github.com/reclosedev/requests-cache";
    description = "Persistent cache for requests library";
    license = licenses.bsd2;
    maintainers = teams.kodi.members;
  };
}