kodiPackages.jurialmunkey: init at 0.2.21

This commit is contained in:
Aaron Andersen
2025-04-15 19:30:55 -04:00
parent 09e6a49dd5
commit c912d9b3fc
2 changed files with 38 additions and 0 deletions
@@ -0,0 +1,36 @@
{
lib,
buildKodiAddon,
fetchFromGitHub,
requests,
infotagger,
}:
buildKodiAddon rec {
pname = "jurialmunkey";
namespace = "script.module.jurialmunkey";
version = "0.2.21";
src = fetchFromGitHub {
owner = "jurialmunkey";
repo = namespace;
rev = "v${version}";
hash = "sha256-vcYydVrcVJ7jaeFXCad7pgxvoZy63QLlRS3HO9GsmtU=";
};
propagatedBuildInputs = [
requests
infotagger
];
passthru = {
pythonPath = "resources/modules";
};
meta = with lib; {
homepage = "https://github.com/jurialmunkey/script.module.jurialmunkey/tree/main";
description = "Common code required by TMDbHelper and other related jurialmunkey add-ons";
license = licenses.gpl3Plus;
maintainers = teams.kodi.members;
};
}
+2
View File
@@ -215,6 +215,8 @@ let
inputstreamhelper = callPackage ../applications/video/kodi/addons/inputstreamhelper { };
jurialmunkey = callPackage ../applications/video/kodi/addons/jurialmunkey { };
kodi-six = callPackage ../applications/video/kodi/addons/kodi-six { };
myconnpy = callPackage ../applications/video/kodi/addons/myconnpy { };