lol

python311Packages.anthropic: 0.3.13 -> 0.5.0

Diff: https://github.com/anthropics/anthropic-sdk-python/compare/refs/tags/v0.3.13...v0.5.0

Changelog: https://github.com/anthropics/anthropic-sdk-python/releases/tag/v0.5.0

+5 -5
+5 -5
pkgs/development/python-modules/anthropic/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , poetry-core 4 + , hatchling 5 5 , anyio 6 6 , distro 7 7 , httpx ··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "anthropic"; 19 - version = "0.3.13"; 20 - format = "pyproject"; 19 + version = "0.5.0"; 20 + pyproject = true; 21 21 22 22 disabled = pythonOlder "3.8"; 23 23 ··· 25 25 owner = "anthropics"; 26 26 repo = "anthropic-sdk-python"; 27 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-2sw/tzbKd0d4sSHM+PYTE/XeqkycFFLfG1c/lyrU4Jc="; 28 + hash = "sha256-+EiFp55tPsILl6uuTh9qmeQDMKlUzegn3xUo6BupN2E="; 29 29 }; 30 30 31 31 nativeBuildInputs = [ 32 - poetry-core 32 + hatchling 33 33 ]; 34 34 35 35 propagatedBuildInputs = [