overrides: fix pillow build failure

This commit is contained in:
Infinidoge 2024-11-18 10:51:53 -05:00
parent 73698b6684
commit 4860cb18b4
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E

View file

@ -61,6 +61,11 @@ in
qtile-extras = pythonPrev.qtile-extras.overridePythonAttrs { qtile-extras = pythonPrev.qtile-extras.overridePythonAttrs {
doCheck = false; doCheck = false;
}; };
# https://github.com/NixOS/nixpkgs/pull/356680/
term-image = pythonPrev.term-image.overridePythonAttrs {
pythonRelaxDeps = [ "pillow" ];
};
}) })
]; ];