571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
886 B
Nix
41 lines
886 B
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "gorilla-cli";
|
|
version = "0.0.9";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gorilla-llm";
|
|
repo = "gorilla-cli";
|
|
rev = version;
|
|
hash = "sha256-3h3QtBDKswTDL7zNM2C4VWiGCqknm/bxhP9sw4ieIcQ=";
|
|
};
|
|
|
|
disabled = python3.pythonOlder "3.6";
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
requests
|
|
halo
|
|
prompt-toolkit
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
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 = licenses.asl20;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
mainProgram = "gorilla";
|
|
};
|
|
}
|