tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.llm: 0.23 -> 0.24.2
Joshua Peek
10 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
6
pythonOlder,
7
7
setuptools,
8
8
click-default-group,
9
9
+
condense-json,
9
10
numpy,
10
11
openai,
11
12
pip,
···
16
17
pyyaml,
17
18
sqlite-migrate,
18
19
cogapp,
20
20
+
pytest-asyncio,
19
21
pytest-httpx,
20
22
sqlite-utils,
21
23
}:
22
24
let
23
25
llm = buildPythonPackage rec {
24
26
pname = "llm";
25
25
-
version = "0.23";
27
27
+
version = "0.24.2";
26
28
pyproject = true;
27
29
28
30
build-system = [ setuptools ];
···
33
35
owner = "simonw";
34
36
repo = "llm";
35
37
tag = version;
36
36
-
hash = "sha256-jUWhdLZLHgrIP7trHvLBETQ764+k4ze5Swt2HYMqg4E=";
38
38
+
hash = "sha256-G5XKau8sN/AW9icSmJW9ht0wP77QdJkT5xmn7Ej4NeU=";
37
39
};
38
40
39
41
patches = [ ./001-disable-install-uninstall-commands.patch ];
40
42
41
43
dependencies = [
42
44
click-default-group
45
45
+
condense-json
43
46
numpy
44
47
openai
45
48
pip
···
56
59
nativeCheckInputs = [
57
60
cogapp
58
61
numpy
62
62
+
pytest-asyncio
59
63
pytest-httpx
60
64
pytestCheckHook
61
65
];