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