mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 22:33:53 +00:00
28 lines
634 B
Nix
28 lines
634 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|