python310Packages.azure-core 0 -> 1 attrpath: python310Packages.azure-core Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/iqqipvxif3lw3ixckbclbkbnjp5xivy0-packages.json.drv building '/nix/store/iqqipvxif3lw3ixckbclbkbnjp5xivy0-packages.json.drv'... Going to be running update for following packages: - python3.10-azure-core-1.25.1 Press Enter key to continue... Running update for: - python3.10-azure-core-1.25.1: UPDATING ... - python3.10-azure-core-1.25.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/azure-core/default.nix b/pkgs/development/python-modules/azure-core/default.nix index 4e9329f2260..c1f780f9052 100644 --- a/pkgs/development/python-modules/azure-core/default.nix +++ b/pkgs/development/python-modules/azure-core/default.nix @@ -17,7 +17,7 @@ , typing-extensions }: buildPythonPackage rec { - version = "1.25.1"; + version = "1.26.2"; pname = "azure-core"; disabled = pythonOlder "3.6"; @@ -26,7 +26,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; extension = "zip"; - sha256 = "sha256-PBzzaGUOduwAnAfNEXSpXNy0cbJHu3LRgkX31WwYCbI="; + sha256 = "sha256-mGv9hoeIl4LXlIHUxdCvBKtKGMovIQNkgEqI5OqhWGo="; }; propagatedBuildInputs = [ No auto update branch exists Old version 1.25.1" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchPypi , pythonOlder , aiodns , aiohttp , flask , mock , pytest , pytest-asyncio , pytest-trio , pytestCheckHook , requests , six , trio , typing-extensions }: buildPythonPackage rec { version = "1.26.1"; pname = "azure-core"; disabled = pythonOlder "3.6"; __darwinAllowLocalNetworking = true; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "sha256-IjsOkMvdHwPEGxlbAyOYmYQ/INAJZNu4XmQ4aHNBSi0="; }; propagatedBuildInputs = [ requests six typing-extensions ]; checkInputs = [ aiodns aiohttp flask mock pytest pytest-trio pytest-asyncio pytestCheckHook trio ]; # test server needs to be available preCheck = '' export PYTHONPATH=tests/testserver_tests/coretestserver:$PYTHONPATH ''; pytestFlagsArray = [ "tests/" ]; # disable tests which touch network disabledTests = [ "aiohttp" "multipart_send" "response" "request" "timeout" "test_sync_transport_short_read_download_stream" "test_aio_transport_short_read_download_stream" # disable 8 tests failing on some darwin machines with errors: # azure.core.polling.base_polling.BadStatus: Invalid return status 403 for 'GET' operation # azure.core.exceptions.HttpResponseError: Operation returned an invalid status 'Forbidden' ] ++ lib.optionals stdenv.isDarwin [ "location_polling_fail" ]; disabledTestPaths = [ # requires testing modules which aren't published, and likely to create cyclic dependencies "tests/test_connection_string_parsing.py" # wants network "tests/async_tests/test_streaming_async.py" "tests/test_streaming.py" # testserver tests require being in a very specific working directory to make it work "tests/testserver_tests/" # requires missing pytest plugin "tests/async_tests/test_rest_asyncio_transport.py" # needs msrest, which cannot be included in checkInputs due to circular dependency new in msrest 0.7.1 # azure-core needs msrest which needs azure-core "tests/test_polling.py" "tests/async_tests/test_base_polling_async.py" "tests/async_tests/test_polling_async.py" ]; meta = with lib; { description = "Microsoft Azure Core Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ jonringer ]; }; }