tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
Update aider (#378510)
authored by
Yt
and committed by
GitHub
1 year ago
ff0654c4
508be1c4
+5
-5
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
aider-chat
default.nix
litellm
default.nix
+3
-3
pkgs/development/python-modules/aider-chat/default.nix
reviewed
···
12
12
self = python3;
13
13
packageOverrides = _: super: { tree-sitter = super.tree-sitter_0_21; };
14
14
};
15
15
-
version = "0.72.1";
15
15
+
version = "0.73.0";
16
16
aider-chat = python3.pkgs.buildPythonPackage {
17
17
pname = "aider-chat";
18
18
inherit version;
···
22
22
owner = "Aider-AI";
23
23
repo = "aider";
24
24
tag = "v${version}";
25
25
-
hash = "sha256-5dV1EW4qx2tXDlbzyS8CT3p0MXgdKVdIGVLDEQF/4Zc=";
25
25
+
hash = "sha256-wcrwm4mn4D6pYgoCa5iKcKmt4QmhOXOfObUl7Gevukg=";
26
26
};
27
27
28
28
pythonRelaxDeps = true;
···
191
191
homepage = "https://github.com/paul-gauthier/aider";
192
192
changelog = "https://github.com/paul-gauthier/aider/blob/v${version}/HISTORY.md";
193
193
license = lib.licenses.asl20;
194
194
-
maintainers = with lib.maintainers; [ taha-yassine ];
194
194
+
maintainers = with lib.maintainers; [ happysalada ];
195
195
mainProgram = "aider";
196
196
};
197
197
};
+2
-2
pkgs/development/python-modules/litellm/default.nix
reviewed
···
37
37
38
38
buildPythonPackage rec {
39
39
pname = "litellm";
40
40
-
version = "1.58.2";
40
40
+
version = "1.59.8";
41
41
pyproject = true;
42
42
43
43
disabled = pythonOlder "3.8";
···
46
46
owner = "BerriAI";
47
47
repo = "litellm";
48
48
tag = "v${version}";
49
49
-
hash = "sha256-trHZ8KrvdetL4q0nQyUm4YGX8WeMz4YrM+GPwcz8wtI=";
49
49
+
hash = "sha256-2OkREmgs+r+vco1oEVgp5nq7cfwIAlMAh0FL2ceO88Y=";
50
50
};
51
51
52
52
build-system = [ poetry-core ];