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

31 lines
430 B
Nix
Raw Permalink Normal View History

2025-02-06 11:52:45 -06:00
{
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
wheel,
...
}:
buildPythonPackage rec {
pname = "llm-jq";
version = "0.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "simonw";
repo = "llm-jq";
rev = version;
hash = "sha256-Mf/tbB9+UdmSRpulqv5Wagr8wjDcRrNs2741DNQZhO4=";
};
nativeBuildInputs = [
setuptools
wheel
];
dontCheckRuntimeDeps = true;
}