biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / urllib3 / default.nix
blob9cfc54797e875a96262217c4f083ce1efa73da58
1 { lib, rel, buildKodiAddon, fetchzip, addonUpdateScript }:
3 buildKodiAddon rec {
4   pname = "urllib3";
5   namespace = "script.module.urllib3";
6   version = "2.1.0";
8   src = fetchzip {
9     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
10     sha256 = "sha256-UCvkeguxytPoP1gIIt8N79TVs98ATzsfrRSabtbgnGc=";
11   };
13   passthru = {
14     pythonPath = "lib";
15     updateScript = addonUpdateScript {
16       attrPath = "kodi.packages.urllib3";
17     };
18   };
20   meta = with lib; {
21     homepage = "https://urllib3.readthedocs.io/en/latest/";
22     description = "HTTP library with thread-safe connection pooling, file post, and more";
23     license = licenses.mit;
24     maintainers = teams.kodi.members;
25   };