summary refs log tree commit diff
path: root/pkgs/applications/video/kodi-packages/dateutil/default.nix
blob: 665858d3d5737fa5eb4347506882f8c5175569bf (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
{ lib, buildKodiAddon, fetchzip, addonUpdateScript, six }:

buildKodiAddon rec {
  pname = "dateutil";
  namespace = "script.module.dateutil";
  version = "2.8.1+matrix.1";

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

  propagatedBuildInputs = [
    six
  ];

  passthru.updateScript = addonUpdateScript {
    attrPath = "kodi.packages.dateutil";
  };

  meta = with lib; {
    homepage = "https://dateutil.readthedocs.io/en/stable/";
    description = "Extensions to the standard Python datetime module";
    license = with licenses; [ asl20 bsd3 ];
    maintainers = teams.kodi.members;
  };
}