15 python = kodi.pythonPackages.python.withPackages (p: with p; [ pyyaml ]);
19 namespace = "plugin.video.jellyfin";
22 src = fetchFromGitHub {
24 repo = "jellyfin-kodi";
26 sha256 = "sha256-MPRyMeJuuiG62ahNKfXyb3Q4LDm0yXkNgCeYxfpT1io=";
29 nativeBuildInputs = [ python ];
31 # ZIP does not support timestamps before 1980 - https://bugs.python.org/issue34097
32 patches = [ ./no-strict-zip-timestamp.patch ];
35 ${python}/bin/python3 build.py --version=py3
39 cp -v addon.xml $out${addonDir}/$namespace/
42 propagatedBuildInputs = [
52 homepage = "https://jellyfin.org/";
53 description = "Whole new way to manage and view your media library";
54 license = licenses.gpl3Only;
55 maintainers = teams.kodi.members;