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

33 lines
396 B
Nix
Raw Normal View History

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