fix(niimprint): relax dependency

This commit is contained in:
arcnmx 2024-11-19 14:07:29 -08:00
parent 7dd40a10de
commit ab16fa47cb

View file

@ -1,5 +1,6 @@
{ {
buildPythonApplication, buildPythonApplication,
pythonRelaxDepsHook,
fetchFromGitHub, fetchFromGitHub,
poetry-core, poetry-core,
pyserial, pyserial,
@ -22,6 +23,7 @@ in
pyproject = true; pyproject = true;
nativeBuildInputs = [ nativeBuildInputs = [
pythonRelaxDepsHook
poetry-core poetry-core
]; ];
@ -31,6 +33,10 @@ in
click click
]; ];
pythonRelaxDeps = [
"pillow"
];
postInstall = '' postInstall = ''
install -d $out/bin install -d $out/bin
echo '#!/usr/bin/env python' > $out/bin/${mainProgram} echo '#!/usr/bin/env python' > $out/bin/${mainProgram}