oizys/pkgs/llm/llm-cmd/default.nix

39 lines
528 B
Nix
Raw Permalink Normal View History

2025-02-06 11:52:45 -06:00
{
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
wheel,
# deps
prompt_toolkit,
pygments,
...
}:
buildPythonPackage rec {
pname = "llm-cmd";
version = "0.2a0";
pyproject = true;
src = fetchFromGitHub {
owner = "simonw";
repo = "llm-cmd";
rev = version;
hash = "sha256-RhwQEllpee/XP1p0nrgL4m+KjSZzf61J8l1jJGlg94E=";
};
nativeBuildInputs = [
setuptools
wheel
];
dependencies = [
2025-02-07 15:47:52 -06:00
prompt_toolkit
pygments
2025-02-06 11:52:45 -06:00
];
dontCheckRuntimeDeps = true;
}