mini-calc: 3.3.3 -> 3.3.5 (#372274)
[NixPkgs.git] / pkgs / applications / video / kodi / addons / urllib3 / default.nix
blob72ee3d7fd29b83bae74af68cbec3e4ce8efe158f
2   lib,
3   rel,
4   buildKodiAddon,
5   fetchzip,
6   addonUpdateScript,
7 }:
9 buildKodiAddon rec {
10   pname = "urllib3";
11   namespace = "script.module.urllib3";
12   version = "2.1.0";
14   src = fetchzip {
15     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
16     sha256 = "sha256-UCvkeguxytPoP1gIIt8N79TVs98ATzsfrRSabtbgnGc=";
17   };
19   passthru = {
20     pythonPath = "lib";
21     updateScript = addonUpdateScript {
22       attrPath = "kodi.packages.urllib3";
23     };
24   };
26   meta = with lib; {
27     homepage = "https://urllib3.readthedocs.io/en/latest/";
28     description = "HTTP library with thread-safe connection pooling, file post, and more";
29     license = licenses.mit;
30     maintainers = teams.kodi.members;
31   };