python311Packages.google-auth 0 -> 1 attrpath: python311Packages.google-auth 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] this derivation will be built: /nix/store/41fnmk8vk1qx1sppziyhc80d3db158m4-packages.json.drv building '/nix/store/41fnmk8vk1qx1sppziyhc80d3db158m4-packages.json.drv'... Going to be running update for following packages: - python3.11-google-auth-2.27.0 Press Enter key to continue... Running update for: - python3.11-google-auth-2.27.0: UPDATING ... - python3.11-google-auth-2.27.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/google-auth/default.nix b/pkgs/development/python-modules/google-auth/default.nix index 905f301c2cc8..0e55302db47f 100644 --- a/pkgs/development/python-modules/google-auth/default.nix +++ b/pkgs/development/python-modules/google-auth/default.nix @@ -26,14 +26,14 @@ buildPythonPackage rec { pname = "google-auth"; - version = "2.27.0"; + version = "2.28.2"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-6GOlbMwtjvqD33qAJyYB5DSH+ppyijdiBchsJqrvqCE="; + hash = "sha256-gLi0lpqp7Vk4x4KDCPIPA1vHn52PuBIL+dyNsgtBujA="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.27.0" not present in staging derivation file with contents: { lib , stdenv , aiohttp , aioresponses , buildPythonPackage , cachetools , cryptography , fetchPypi , flask , freezegun , grpcio , mock , oauth2client , pyasn1-modules , pyopenssl , pytest-asyncio , pytest-localserver , pytestCheckHook , pythonOlder , pyu2f , requests , responses , rsa , setuptools }: buildPythonPackage rec { pname = "google-auth"; version = "2.28.1"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-NPwwRsJXztzxYi/Esx/Cvnkj2bTUSXPUgRJezFDYOIU="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ cachetools pyasn1-modules rsa ]; passthru.optional-dependencies = { aiohttp = [ aiohttp requests ]; enterprise_cert = [ cryptography pyopenssl ]; pyopenssl = [ cryptography pyopenssl ]; reauth = [ pyu2f ]; requests = [ requests ]; }; nativeCheckInputs = [ aioresponses flask freezegun grpcio mock oauth2client pytest-asyncio pytest-localserver pytestCheckHook responses ] ++ passthru.optional-dependencies.aiohttp ++ passthru.optional-dependencies.enterprise_cert ++ passthru.optional-dependencies.reauth; pythonImportsCheck = [ "google.auth" "google.oauth2" ]; disabledTestPaths = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ # Disable tests using pyOpenSSL as it does not build on M1 Macs "tests/transport/test__mtls_helper.py" "tests/transport/test_requests.py" "tests/transport/test_urllib3.py" "tests/transport/test__custom_tls_signer.py" ]; __darwinAllowLocalNetworking = true; meta = with lib; { description = "Google Auth Python Library"; longDescription = '' This library simplifies using Google's various server-to-server authentication mechanisms to access Google APIs. ''; homepage = "https://github.com/googleapis/google-auth-library-python"; changelog = "https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ ]; }; }