1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 19:03:53 +00:00
ultima/modules/home/programs/custom/anicli/eggella.nix

38 lines
668 B
Nix
Raw Normal View History

{
lib,
pkgs,
fetchPypi,
python3Packages,
}:
2024-11-21 09:24:15 +00:00
python3Packages.buildPythonApplication rec {
pname = "eggella";
version = "0.1.7";
pyproject = true;
src = fetchPypi {
pname = "eggella";
inherit version;
hash = "sha256-8Vo39BePA86wcLKs/F+u2N7tpIpPrEyEPp3POszy050=";
};
build-system = with python3Packages; [
hatchling
setuptools
];
2024-11-21 09:24:15 +00:00
dependencies = [
python3Packages.prompt-toolkit
python3Packages.rich
python3Packages.typer
];
meta = with lib; {
homepage = "https://github.com/vypivshiy/eggella";
maintainers = with maintainers; [
DADA30000
azikx
];
2024-11-21 09:24:15 +00:00
mainProgram = "eggella";
};
}