Merge pull request #247471 from doronbehar/pkg/matherial-color-utilities

python3.pkgs.material-color-utilities: relax Pillow dependency
This commit is contained in:
Doron Behar 2023-08-06 17:37:20 +00:00 committed by GitHub
commit cec5df9fb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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