python3.pkgs.material-color-utilities: relax Pillow dependency
This commit is contained in:
parent
b63c63c62c
commit
6f1e1dc176
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, lib, buildPythonPackage, fetchPypi, pillow, regex }:
|
{ stdenv, lib, buildPythonPackage, fetchPypi, pythonRelaxDepsHook, pillow, regex }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "material-color-utilities-python";
|
pname = "material-color-utilities-python";
|
||||||
|
@ -9,6 +9,13 @@ buildPythonPackage rec {
|
||||||
sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64=";
|
sha256 = "sha256-PG8C585wWViFRHve83z3b9NijHyV+iGY2BdMJpyVH64=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pythonRelaxDepsHook
|
||||||
|
];
|
||||||
|
pythonRelaxDeps = [
|
||||||
|
"Pillow"
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pillow
|
pillow
|
||||||
regex
|
regex
|
||||||
|
|
Loading…
Reference in a new issue