biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / video / kodi / addons / dateutil / default.nix
blobb0fadcf8a86222a512371dd982a0521cd2ceaa72
1 { lib, rel, buildKodiAddon, fetchzip, addonUpdateScript, six }:
3 buildKodiAddon rec {
4   pname = "dateutil";
5   namespace = "script.module.dateutil";
6   version = "2.8.2";
8   src = fetchzip {
9     url = "https://mirrors.kodi.tv/addons/${lib.toLower rel}/${namespace}/${namespace}-${version}.zip";
10     sha256 = "sha256-iQnyS0GjYcPbnBDUxmMrmDxHOA3K8RbTVke/HF4d5u4=";
11   };
13   propagatedBuildInputs = [
14     six
15   ];
17   passthru = {
18     pythonPath = "lib";
19     updateScript = addonUpdateScript {
20       attrPath = "kodi.packages.dateutil";
21     };
22   };
24   meta = with lib; {
25     homepage = "https://dateutil.readthedocs.io/en/stable/";
26     description = "Extensions to the standard Python datetime module";
27     license = with licenses; [ asl20 bsd3 ];
28     maintainers = teams.kodi.members;
29   };