2024-12-17 12:10:05 +00:00
|
|
|
{
|
|
|
|
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=";
|
|
|
|
};
|
|
|
|
|
2024-12-17 12:10:05 +00:00
|
|
|
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";
|
2024-12-17 12:10:05 +00:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
DADA30000
|
|
|
|
azikx
|
|
|
|
];
|
2024-11-21 09:24:15 +00:00
|
|
|
mainProgram = "eggella";
|
|
|
|
};
|
|
|
|
}
|