scope.nix 1.12 KB
Newer Older
xuxzh1's avatar
init  
xuxzh1 committed
1
2
3
{
  lib,
  newScope,
xuxzh1's avatar
update  
xuxzh1 committed
4
  python3,
xuxzh1's avatar
init  
xuxzh1 committed
5
6
7
  llamaVersion ? "0.0.0",
}:

xuxzh1's avatar
update  
xuxzh1 committed
8
9
10
11
12
13
14
15
16
17
18
let
  pythonPackages = python3.pkgs;
  buildPythonPackage = pythonPackages.buildPythonPackage;
  numpy = pythonPackages.numpy;
  tqdm = pythonPackages.tqdm;
  sentencepiece = pythonPackages.sentencepiece;
  pyyaml = pythonPackages.pyyaml;
  poetry-core = pythonPackages.poetry-core;
  pytestCheckHook = pythonPackages.pytestCheckHook;
in

xuxzh1's avatar
init  
xuxzh1 committed
19
20
21
22
# 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

xuxzh1's avatar
update  
xuxzh1 committed
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
lib.makeScope newScope (self: {
  inherit llamaVersion;
  gguf-py = self.callPackage ./package-gguf-py.nix {
    inherit
      buildPythonPackage
      numpy
      tqdm
      sentencepiece
      poetry-core
      pyyaml
      pytestCheckHook
      ;
  };
  python-scripts = self.callPackage ./python-scripts.nix { inherit 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 { };
})