pulumi: add pulumiPackages.pulumi-{go,nodejs,python} to passthru.tests

This commit is contained in:
Ivan Trubach
2025-03-27 16:36:17 +03:00
parent a0763eb343
commit cc4b71fb86

View File

@@ -10,6 +10,7 @@
callPackage, callPackage,
testers, testers,
pulumi, pulumi,
pulumiPackages,
python3Packages, python3Packages,
nix-update-script, nix-update-script,
_experimental-update-script-combinators, _experimental-update-script-combinators,
@@ -141,6 +142,8 @@ buildGoModule rec {
version = "v${version}"; version = "v${version}";
command = "PULUMI_SKIP_UPDATE_CHECK=1 pulumi version"; command = "PULUMI_SKIP_UPDATE_CHECK=1 pulumi version";
}; };
# Test building packages that reuse our version and src.
inherit (pulumiPackages) pulumi-go pulumi-nodejs pulumi-python;
# Pulumi currently requires protobuf4, but Nixpkgs defaults to a newer # Pulumi currently requires protobuf4, but Nixpkgs defaults to a newer
# version. Test that we can actually build the package with protobuf4. # version. Test that we can actually build the package with protobuf4.
# https://github.com/pulumi/pulumi/issues/16828 # https://github.com/pulumi/pulumi/issues/16828