mirror of
https://github.com/ggerganov/llama.cpp
synced 2026-03-12 18:20:42 +01:00
Without this I get:
> * Getting build dependencies for wheel...
> * Building wheel...
> Successfully built gguf-0.17.1-py3-none-any.whl
> Finished creating a wheel...
> Finished executing pypaBuildPhase
> Running phase: pythonRuntimeDepsCheckHook
> Executing pythonRuntimeDepsCheck
> Checking runtime dependencies for gguf-0.17.1-py3-none-any.whl
> - requests not installed
For full logs, run:
nix log /nix/store/x0c4a251l68bvdgang9d8v2fsmqay8a4-python3.12-gguf-0.0.0.drv
I changed a bit the style to make it more terse ~> more elegant in my
opinion.
36 lines
900 B
Nix
36 lines
900 B
Nix
{
|
|
lib,
|
|
newScope,
|
|
python3,
|
|
llamaVersion ? "0.0.0",
|
|
}:
|
|
|
|
let
|
|
pythonPackages = python3.pkgs;
|
|
in
|
|
|
|
# We're using `makeScope` instead of just writing out an attrset
|
|
# because it allows users to apply overlays later using `overrideScope'`.
|
|
# Cf. https://noogle.dev/f/lib/makeScope
|
|
|
|
lib.makeScope newScope (self: {
|
|
inherit llamaVersion;
|
|
gguf-py = self.callPackage ./package-gguf-py.nix {
|
|
inherit (pythonPackages)
|
|
numpy
|
|
tqdm
|
|
sentencepiece
|
|
pyyaml
|
|
pytestCheckHook
|
|
requests
|
|
buildPythonPackage
|
|
poetry-core
|
|
;
|
|
};
|
|
python-scripts = self.callPackage ./python-scripts.nix { inherit (pythonPackages) buildPythonPackage poetry-core; };
|
|
llama-cpp = self.callPackage ./package.nix { };
|
|
docker = self.callPackage ./docker.nix { };
|
|
docker-min = self.callPackage ./docker.nix { interactive = false; };
|
|
sif = self.callPackage ./sif.nix { };
|
|
})
|