mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-23 16:15:51 -06:00
31 lines
430 B
Nix
31 lines
430 B
Nix
|
{
|
||
|
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;
|
||
|
}
|