Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
939 B
Nix
46 lines
939 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "gorilla-cli";
|
|
version = "0.0.9";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gorilla-llm";
|
|
repo = "gorilla-cli";
|
|
rev = version;
|
|
hash = "sha256-3h3QtBDKswTDL7zNM2C4VWiGCqknm/bxhP9sw4ieIcQ=";
|
|
};
|
|
|
|
disabled = python3.pythonOlder "3.6";
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
requests
|
|
halo
|
|
prompt-toolkit
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "LLMs for your CLI";
|
|
homepage = "https://github.com/gorilla-llm/gorilla-cli";
|
|
changelog = "https://github.com/gorilla-llm/gorilla-cli/releases/tag/${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ happysalada ];
|
|
mainProgram = "gorilla";
|
|
};
|
|
}
|