packages.stickerpicker: fix build

This commit is contained in:
2025-09-22 09:56:13 +08:00
parent e8ebac3697
commit aacb42d692

View File

@@ -1,6 +1,9 @@
{ src, buildPythonApplication, aiohttp, yarl, pillow, telethon, cryptg, python-magic }: buildPythonApplication
{ src, buildPythonApplication, aiohttp, yarl, pillow, telethon, cryptg, python-magic, setuptools }:
buildPythonApplication
{
name = "stickerpicker";
inherit src;
propagatedBuildInputs = [ aiohttp yarl pillow telethon cryptg python-magic ];
pyproject = true;
build-system = [ setuptools ];
}