From cf655bca9e0047f77ae799d7be0ec78eedc2559e Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Thu, 29 Sep 2022 22:12:08 +0200 Subject: [PATCH] kodi: test different crypt lib Signed-off-by: Florian Brandes --- pkgs/applications/video/kodi/wrapper.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/kodi/wrapper.nix b/pkgs/applications/video/kodi/wrapper.nix index 52b7679a325e..2c2c76f8a853 100644 --- a/pkgs/applications/video/kodi/wrapper.nix +++ b/pkgs/applications/video/kodi/wrapper.nix @@ -4,7 +4,7 @@ let kodiPackages = callPackage ../../../top-level/kodi-packages.nix { inherit kodi; }; # linux distros are supposed to provide pillow and pycryptodome - requiredPythonPath = with kodi.pythonPackages; makePythonPath ([ pillow pycryptodome ]); + requiredPythonPath = with kodi.pythonPackages; makePythonPath ([ pillow pycryptodomex ]); # each kodi addon can potentially export a python module which should be included in PYTHONPATH # see any addon which supplies `passthru.pythonPath` and the corresponding entry in the addons `addon.xml`