mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
python3.pkgs.material-color-utilities: relax Pillow dependency
This commit is contained in:
parent
b63c63c62c
commit
6f1e1dc176
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user