blob: c559e42c8d3785e69a1f811d1d4cd1cb3d30d298 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
_self: super: {
python3 = super.python3.override {
packageOverrides = _pyself: pysuper:
with pysuper.pkgs.python3Packages;
let dontCheck = p: p.overridePythonAttrs (_: { doCheck = false; });
in {
exllama = callPackage ./Deps/exllama.nix { };
exllamav2 = callPackage ./Deps/exllamav2.nix { };
interegular = callPackage ./Deps/interegular.nix { };
mypy = dontCheck pysuper.mypy;
outlines = callPackage ./Deps/outlines.nix { };
perscache = callPackage ./Deps/perscache.nix { };
tokenizers = dontCheck pysuper.tokenizers;
};
};
}
|