python3.pkgs.material-color-utilities: relax Pillow dependency

This commit is contained in:
Doron Behar 2023-08-06 10:17:50 +03:00
parent b63c63c62c
commit 6f1e1dc176

View File

@ -1,4 +1,4 @@
{ stdenv, lib, buildPythonPackage, fetchPypi, pillow, regex }:
{ stdenv, lib, buildPythonPackage, fetchPypi, pythonRelaxDepsHook, pillow, regex }:
buildPythonPackage rec {
pname = "material-color-utilities-python";
@ -9,6 +9,13 @@ buildPythonPackage rec {
sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"Pillow"
];
propagatedBuildInputs = [
pillow
regex