python311Packages.tilequant: relax pillow constraint

This commit is contained in:
Martin Weinelt 2024-01-29 01:36:35 +01:00
parent 610d056ce8
commit a35fedb6a6
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -4,6 +4,7 @@
, click
, ordered-set
, pythonOlder
, pythonRelaxDepsHook
, pillow
, sortedcollections
, setuptools_dso
@ -21,6 +22,14 @@ buildPythonPackage rec {
hash = "sha256-uW1g3nlT6Y+1beifo/MOlGxsGL7on/jcAROxSddySHk=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"pillow"
];
propagatedBuildInputs = [
click
ordered-set