{ lib, anyio, buildPythonPackage, dirty-equals, distro, fetchFromGitHub, google-auth, hatch-fancy-pypi-readme, hatchling, httpx, pydantic, pytest-asyncio, pytestCheckHook, pythonOlder, respx, sniffio, tokenizers, typing-extensions, }: buildPythonPackage rec { pname = "anthropic"; version = "0.25.8"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "anthropics"; repo = "anthropic-sdk-python"; rev = "refs/tags/v${version}"; hash = "sha256-CBe5rzO2+m1AGfDbAqxCzZ+Rm1Er4e0JuxtFRzgHV/Q="; }; build-system = [ hatchling hatch-fancy-pypi-readme ]; dependencies = [ anyio distro httpx sniffio pydantic tokenizers typing-extensions ]; passthru.optional-dependencies = { vertex = [ google-auth ]; }; nativeCheckInputs = [ dirty-equals pytest-asyncio pytestCheckHook respx ]; pythonImportsCheck = [ "anthropic" ]; disabledTests = [ # Test require network access "test_copy_build_request" ]; disabledTestPaths = [ # Test require network access "tests/api_resources" ]; pytestFlagsArray = [ "-W" "ignore::DeprecationWarning" ]; meta = with lib; { description = "Anthropic's safety-first language model APIs"; homepage = "https://github.com/anthropics/anthropic-sdk-python"; changelog = "https://github.com/anthropics/anthropic-sdk-python/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ natsukium ]; }; }