mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Merge pull request #211662 from Trundle/pulumi-3.52.0
pulumi: 3.49.0 -> 3.52.0
This commit is contained in:
commit
c7e15bc394
@ -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
|
||||
|
@ -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 ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user