openai 1.9.0 -> 1.10.0 https://github.com/openai/openai-python/releases attrpath: openai Checking auto update branch... No auto update branch exists Old version 1.9.0" not present in master derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pythonOlder , hatchling # propagated , httpx , pydantic , typing-extensions , anyio , distro , sniffio , cached-property , tqdm # optional , numpy , pandas , pandas-stubs # tests , pytestCheckHook , pytest-asyncio , pytest-mock , respx , dirty-equals }: buildPythonPackage rec { pname = "openai"; version = "1.10.0"; pyproject = true; disabled = pythonOlder "3.7.1"; src = fetchFromGitHub { owner = "openai"; repo = "openai-python"; rev = "refs/tags/v${version}"; hash = "sha256-VffgHJLsfnT3xqELV7Ze1o1rqohKxscC3SDthP8TwzI="; }; nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ httpx pydantic typing-extensions anyio distro sniffio tqdm ] ++ lib.optionals (pythonOlder "3.8") [ cached-property ]; passthru.optional-dependencies = { datalib = [ numpy pandas pandas-stubs ]; }; pythonImportsCheck = [ "openai" ]; nativeCheckInputs = [ pytestCheckHook pytest-asyncio pytest-mock respx dirty-equals ]; disabledTests = [ # makes network requests "test_streaming_response" ]; disabledTestPaths = [ # makes network requests "tests/api_resources" ]; meta = with lib; { description = "Python client library for the OpenAI API"; homepage = "https://github.com/openai/openai-python"; changelog = "https://github.com/openai/openai-python/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ malo ]; }; }