biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / requests / default.nix
blob4950d63608eb393bb4da14ab2e650afbf9c24082
1 { lib, rel, buildKodiAddon, fetchzip, addonUpdateScript, certifi, chardet, idna, urllib3 }:
2 buildKodiAddon rec {
3   pname = "requests";
4   namespace = "script.module.requests";
5   version = "2.31.0";
7   src = fetchzip {
8     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
9     sha256 = "sha256-05BSD5aoN2CTnjqaSKYMb93j5nIfLvpJHyeQsK++sTw=";
10   };
12   propagatedBuildInputs = [
13     certifi
14     chardet
15     idna
16     urllib3
17   ];
19   passthru = {
20     pythonPath = "lib";
21     updateScript = addonUpdateScript {
22       attrPath = "kodi.packages.requests";
23     };
24   };
26   meta = with lib; {
27     homepage = "http://python-requests.org";
28     description = "Python HTTP for Humans";
29     license = licenses.asl20;
30     maintainers = teams.kodi.members;
31   };