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

28 lines
634 B
Nix
Raw Normal View History

2024-11-21 09:24:15 +00:00
{ lib, pkgs, fetchPypi, python3Packages }:
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 ];
dependencies = [
python3Packages.prompt-toolkit
python3Packages.rich
python3Packages.typer
];
meta = with lib; {
homepage = "https://github.com/vypivshiy/eggella";
maintainers = with maintainers; [ DADA30000 azikx ];
mainProgram = "eggella";
};
}