Merge pull request #327479 from pks-t/pks-kodi-inputstreamhelper-fix-python-3-12-compat

kodiPackages.inputstreamhelper: fix compatibility with Python 3.12
This commit is contained in:
Aaron Andersen 2024-07-16 04:10:36 -04:00 committed by GitHub
commit 5276974df2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
{ lib, rel, buildKodiAddon, fetchzip, addonUpdateScript }:
{ lib, rel, buildKodiAddon, fetchzip, fetchpatch, addonUpdateScript }:
buildKodiAddon rec {
pname = "inputstreamhelper";
namespace = "script.module.inputstreamhelper";
@ -9,6 +9,13 @@ buildKodiAddon rec {
sha256 = "sha256-v5fRikswmP+KVbxYibD0NbCK8leUnFbya5EtF1FmS0I=";
};
patches = [
(fetchpatch {
url = "https://github.com/emilsvennesson/script.module.inputstreamhelper/commit/af6adc16a0bee4921a827946b004ee070406ae37.patch";
hash = "sha256-901EyVeZUb0EMvxsEza95qFjTOZ7PDYyqHMRawPM5Zs=";
})
];
passthru = {
pythonPath = "lib";
updateScript = addonUpdateScript {