Unverified Commit 4253518f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.google-cloud-shell: 1.14.0 -> 1.15.0 (#515150)

parents 8891ac89 43530c62
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -12,15 +12,15 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "google-cloud-shell";
  version = "1.14.0";
  version = "1.15.0";
  pyproject = true;

  src = fetchPypi {
    pname = "google_cloud_shell";
    inherit version;
    hash = "sha256-hnlYocYjIiPjO4HparvKTC0pFtRXAkRVB9O9TYHOjFU=";
    inherit (finalAttrs) version;
    hash = "sha256-FSnxSR937S5mUz7uxACWB3NRD5bFNaxTKiTWCzt/VAg=";
  };

  build-system = [ setuptools ];
@@ -51,8 +51,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python Client for Cloud Shell";
    homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-shell";
    changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-shell-v${version}/packages/google-cloud-shell/CHANGELOG.md";
    changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-shell-v${finalAttrs.version}/packages/google-cloud-shell/CHANGELOG.md";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})