Unverified Commit c7e15bc3 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #211662 from Trundle/pulumi-3.52.0

pulumi: 3.49.0 -> 3.52.0
parents c89cb352 8313e5f2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ buildPythonPackage rec {
    "test/"
  ];

  sourceRoot = "source/sdk/python/lib";
  sourceRoot = "${src.name}/sdk/python/lib";

  # we apply the modifications done in the pulumi/sdk/python/Makefile
  # but without the venv code
@@ -44,7 +44,7 @@ buildPythonPackage rec {
    cp ../../README.md .
    substituteInPlace setup.py \
      --replace "3.0.0" "${version}" \
      --replace "grpcio==1.47" "grpcio"
      --replace "grpcio==1.50" "grpcio"
  '';

  # Allow local networking in tests on Darwin
+7 −5
Original line number Diff line number Diff line
@@ -14,21 +14,23 @@

buildGoModule rec {
  pname = "pulumi";
  version = "3.49.0";
  version = "3.52.0";

  # Used in pulumi-language packages, which inherit this prop
  sdkVendorHash = "sha256-gM3VpX6r/BScUyvk/XefAfbx0qYzdzSBGaWZN+89BS8=";
  sdkVendorHash = "sha256-y45TlQF8jJeDLeKEI+ZMcEQqwUIrHPjgTaz1QkjTlEI=";

  src = fetchFromGitHub {
    owner = pname;
    repo = pname;
    rev = "v${version}";
    hash = "sha256-WO+bTkTIAyaXl3nYwsMUTdovsYibivfGsKz6A7wj2zM=";
    hash = "sha256-UxVIk7LMF7h/Ba09EgkIuna5iAfqKEuzU0qSKJRPpfw=";
    # Some tests rely on checkout directory name
    name = "pulumi";
  };

  vendorSha256 = "sha256-q7ZusTYD8l2RyiwP/Wf6dP6AoosWEwpaylbdhfE5cUA=";
  vendorSha256 = "sha256-tr3sp9b9xh5NLK1AO88QQVzYbIysmmgRW2s1IRNHFUI=";

  sourceRoot = "source/pkg";
  sourceRoot = "${src.name}/pkg";

  nativeBuildInputs = [ installShellFiles ];