Merge pull request #211662 from Trundle/pulumi-3.52.0

pulumi: 3.49.0 -> 3.52.0
This commit is contained in:
Nick Cao 2023-01-22 10:00:26 +08:00 committed by GitHub
commit c7e15bc394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 7 deletions

View File

@ -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

View File

@ -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 ];