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
python3Packages.llm-anthropic: 0.17 -> 0.18
R. Ryantm
8 months ago
de9163c7
be57485f
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
llm-anthropic
default.nix
+3
-3
pkgs/development/python-modules/llm-anthropic/default.nix
reviewed
···
14
14
15
15
buildPythonPackage rec {
16
16
pname = "llm-anthropic";
17
17
-
version = "0.17";
17
17
+
version = "0.18";
18
18
pyproject = true;
19
19
20
20
src = fetchFromGitHub {
21
21
owner = "simonw";
22
22
repo = "llm-anthropic";
23
23
tag = version;
24
24
-
hash = "sha256-2fatBKZMttC5flzfC7MWCpduc3m6IOVWZiW1K2dYqis=";
24
24
+
hash = "sha256-eyB68wPc4ALnEypUXN20ru7UfS6yKLp2NJohH3Av9Ls=";
25
25
};
26
26
27
27
build-system = [
···
47
47
meta = {
48
48
description = "LLM access to models by Anthropic, including the Claude series";
49
49
homepage = "https://github.com/simonw/llm-anthropic";
50
50
-
changelog = "https://github.com/simonw/llm-anthropic/releases/tag/${version}/CHANGELOG.md";
50
50
+
changelog = "https://github.com/simonw/llm-anthropic/releases/tag/${src.tag}/CHANGELOG.md";
51
51
license = lib.licenses.asl20;
52
52
maintainers = with lib.maintainers; [ aos ];
53
53
};