kodiPackages.jurialmunkey: init at 0.2.21
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user