python310Packages.rich-pixels: fix build

This commit is contained in:
figsoda 2023-08-23 11:36:31 -04:00 committed by Anderson Torres
parent 2b10135a04
commit 09869b89f1

View file

@ -6,6 +6,7 @@
, syrupy
, pillow
, rich
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
@ -22,6 +23,7 @@ buildPythonPackage rec {
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
nativeCheckInputs = [
@ -37,6 +39,10 @@ buildPythonPackage rec {
rich
];
pythonRelaxDeps = [
"pillow"
];
pythonImportsCheck = [ "rich_pixels" ];
meta = with lib; {