python3Packages.azure-core: 1.32.0 -> 1.35.0

https://github.com/Azure/azure-sdk-for-python/blob/azure-core_1.35.0/sdk/core/azure-core/CHANGELOG.md

This commit was automatically generated using update-python-libraries.

+16 -4
+16 -4
pkgs/development/python-modules/azure-core/default.nix
··· 8 8 aiohttp, 9 9 flask, 10 10 mock, 11 + opentelemetry-api, 12 + opentelemetry-instrumentation, 13 + opentelemetry-instrumentation-requests, 14 + opentelemetry-sdk, 11 15 pytest, 12 16 pytest-asyncio, 13 17 pytest-trio, ··· 20 24 }: 21 25 22 26 buildPythonPackage rec { 23 - version = "1.32.0"; 27 + version = "1.35.0"; 24 28 pname = "azure-core"; 25 29 pyproject = true; 26 30 ··· 31 35 src = fetchPypi { 32 36 pname = "azure_core"; 33 37 inherit version; 34 - hash = "sha256-IrPDXWstrhSZD2wb4pEr8j/+ULIg5wiiirG7krHHMOU="; 38 + hash = "sha256-wL5ShIlIXp7eWbaXHrY8HqrPg+9TABv+OQTkdelyvlw="; 35 39 }; 36 40 37 - nativeBuildInputs = [ setuptools ]; 41 + build-system = [ setuptools ]; 38 42 39 - propagatedBuildInputs = [ 43 + dependencies = [ 40 44 requests 41 45 six 42 46 typing-extensions ··· 44 48 45 49 optional-dependencies = { 46 50 aio = [ aiohttp ]; 51 + tracing = [ opentelemetry-api ]; 47 52 }; 48 53 49 54 nativeCheckInputs = [ 50 55 aiodns 51 56 flask 52 57 mock 58 + opentelemetry-instrumentation 59 + opentelemetry-instrumentation-requests 60 + opentelemetry-sdk 53 61 pytest 54 62 pytest-trio 55 63 pytest-asyncio ··· 95 103 "tests/test_polling.py" 96 104 "tests/async_tests/test_base_polling_async.py" 97 105 "tests/async_tests/test_polling_async.py" 106 + # infinite recursion with azure-storage-blob 107 + "tests/async_tests/test_tracing_live_async.py" 108 + "tests/test_serialization.py" 109 + "tests/test_tracing_live.py" 98 110 ]; 99 111 100 112 meta = with lib; {