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.

Changed files
+16 -4
pkgs
development
python-modules
azure-core
+16 -4
pkgs/development/python-modules/azure-core/default.nix
···
aiohttp,
flask,
mock,
+
opentelemetry-api,
+
opentelemetry-instrumentation,
+
opentelemetry-instrumentation-requests,
+
opentelemetry-sdk,
pytest,
pytest-asyncio,
pytest-trio,
···
}:
buildPythonPackage rec {
-
version = "1.32.0";
+
version = "1.35.0";
pname = "azure-core";
pyproject = true;
···
src = fetchPypi {
pname = "azure_core";
inherit version;
-
hash = "sha256-IrPDXWstrhSZD2wb4pEr8j/+ULIg5wiiirG7krHHMOU=";
+
hash = "sha256-wL5ShIlIXp7eWbaXHrY8HqrPg+9TABv+OQTkdelyvlw=";
};
-
nativeBuildInputs = [ setuptools ];
+
build-system = [ setuptools ];
-
propagatedBuildInputs = [
+
dependencies = [
requests
six
typing-extensions
···
optional-dependencies = {
aio = [ aiohttp ];
+
tracing = [ opentelemetry-api ];
};
nativeCheckInputs = [
aiodns
flask
mock
+
opentelemetry-instrumentation
+
opentelemetry-instrumentation-requests
+
opentelemetry-sdk
pytest
pytest-trio
pytest-asyncio
···
"tests/test_polling.py"
"tests/async_tests/test_base_polling_async.py"
"tests/async_tests/test_polling_async.py"
+
# infinite recursion with azure-storage-blob
+
"tests/async_tests/test_tracing_live_async.py"
+
"tests/test_serialization.py"
+
"tests/test_tracing_live.py"
];
meta = with lib; {