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