python310Packages.google-api-core 2.11.1 -> 2.15.0 https://repology.org/project/python:google-api-core/versions attrpath: python310Packages.google-api-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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-google-api-core-2.11.1 Press Enter key to continue... Running update for: - python3.10-google-api-core-2.11.1: UPDATING ... - python3.10-google-api-core-2.11.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/google-api-core/default.nix b/pkgs/development/python-modules/google-api-core/default.nix index 9df9562c3d15..93d4a45805da 100644 --- a/pkgs/development/python-modules/google-api-core/default.nix +++ b/pkgs/development/python-modules/google-api-core/default.nix @@ -17,14 +17,14 @@ buildPythonPackage rec { pname = "google-api-core"; - version = "2.11.1"; + version = "2.15.0"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-JdKeBaAFjtXxnGHAp4sbU63qTZNktGTQFPvalB9tHJo="; + hash = "sha256-q8l4pyZY8Uot8eXhJTLv/kD5T4aPbiPZUTO9arzKNco="; }; propagatedBuildInputs = [ No auto update branch exists Old version 2.11.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , google-auth , googleapis-common-protos , grpcio , grpcio-gcp , grpcio-status , mock , proto-plus , protobuf , pytest-asyncio , pytestCheckHook , pythonOlder , requests }: buildPythonPackage rec { pname = "google-api-core"; version = "2.14.0"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-U2ikUCt5PZu/gSpZEuE+Tmn5vYf277UIRgxD9bvRzkE="; }; propagatedBuildInputs = [ googleapis-common-protos google-auth protobuf proto-plus requests ]; passthru.optional-dependencies = { grpc = [ grpcio grpcio-status ]; grpcgcp = [ grpcio-gcp ]; grpcio-gcp = [ grpcio-gcp ]; }; nativeCheckInputs = [ mock pytest-asyncio pytestCheckHook ]; # prevent google directory from shadowing google imports preCheck = '' rm -r google ''; disabledTests = [ # Those grpc_helpers tests are failing "test_wrap_unary_errors" "test_wrap_stream_errors_raised" "test_wrap_stream_errors_read" "test_wrap_stream_errors_aiter" "test_wrap_stream_errors_write" "test_wrap_unary_errors" "test___next___w_rpc_error" "test_wrap_stream_errors_invocation" "test_wrap_stream_errors_iterator_initialization" "test_wrap_stream_errors_during_iteration" "test_exception_with_error_code" ]; pythonImportsCheck = [ "google.api_core" ]; meta = with lib; { description = "Core Library for Google Client Libraries"; longDescription = '' This library is not meant to stand-alone. Instead it defines common helpers used by all Google API clients. ''; homepage = "https://github.com/googleapis/python-api-core"; changelog = "https://github.com/googleapis/python-api-core/blob/v${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ ]; }; }