tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.llm: 0.23 -> 0.24.2
Joshua Peek
11 months ago
cfcd32d5
a602d8a9
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
llm
default.nix
+6
-2
pkgs/development/python-modules/llm/default.nix
···
6
pythonOlder,
7
setuptools,
8
click-default-group,
0
9
numpy,
10
openai,
11
pip,
···
17
pyyaml,
18
sqlite-migrate,
19
cogapp,
0
20
pytest-httpx,
21
sqlite-utils,
22
}:
23
let
24
llm = buildPythonPackage rec {
25
pname = "llm";
26
-
version = "0.23";
27
pyproject = true;
28
29
build-system = [ setuptools ];
···
35
owner = "simonw";
36
repo = "llm";
37
tag = version;
38
-
hash = "sha256-jUWhdLZLHgrIP7trHvLBETQ764+k4ze5Swt2HYMqg4E=";
39
};
40
41
patches = [ ./001-disable-install-uninstall-commands.patch ];
42
43
dependencies = [
44
click-default-group
0
45
numpy
46
openai
47
pip
···
59
nativeCheckInputs = [
60
cogapp
61
numpy
0
62
pytest-httpx
63
pytestCheckHook
64
];
···
6
pythonOlder,
7
setuptools,
8
click-default-group,
9
+
condense-json,
10
numpy,
11
openai,
12
pip,
···
16
pyyaml,
17
sqlite-migrate,
18
cogapp,
19
+
pytest-asyncio,
20
pytest-httpx,
21
sqlite-utils,
22
}:
23
let
24
llm = buildPythonPackage rec {
25
pname = "llm";
26
+
version = "0.24.2";
27
pyproject = true;
28
29
build-system = [ setuptools ];
···
33
owner = "simonw";
34
repo = "llm";
35
tag = version;
36
+
hash = "sha256-G5XKau8sN/AW9icSmJW9ht0wP77QdJkT5xmn7Ej4NeU=";
37
};
38
39
patches = [ ./001-disable-install-uninstall-commands.patch ];
40
41
dependencies = [
42
click-default-group
43
+
condense-json
44
numpy
45
openai
46
pip
···
56
nativeCheckInputs = [
57
cogapp
58
numpy
59
+
pytest-asyncio
60
pytest-httpx
61
pytestCheckHook
62
];