mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-11 07:49:24 +08:00
10 lines
301 B
Nix
10 lines
301 B
Nix
{ 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 ];
|
|
}
|