1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
{
lib,
pkgs,
pulumiPackages,
buildPythonPackage,
hatchling,
protobuf,
grpcio,
dill,
six,
semver,
pyyaml,
debugpy,
pip,
pytest,
pytest-asyncio,
pytest-timeout,
python,
}:
let
inherit (pkgs.pulumi) pname version src;
inherit (pulumiPackages) pulumi-python;
sourceRoot = "${src.name}/sdk/python";
in
buildPythonPackage {
inherit
pname
version
src
sourceRoot
;
outputs = [
"out"
"dev"
];
pyproject = true;
build-system = [ hatchling ];
dependencies = [
protobuf
grpcio
dill
six
semver
pyyaml
debugpy
pip
];
pythonRelaxDeps = [
"protobuf"
"grpcio"
"pip"
"semver"
];
nativeCheckInputs = [
pytest
pytest-asyncio
pytest-timeout
pulumi-python
];
disabledTestPaths = [
# TODO: remove disabledTestPaths once the test is fixed upstream.
# https://github.com/pulumi/pulumi/pull/19080#discussion_r2309611222
"lib/test/provider/experimental/test_property_value.py::test_nesting"
];
# https://github.com/pulumi/pulumi/blob/0acaf8060640fdd892abccf1ce7435cd6aae69fe/sdk/python/scripts/test_fast.sh#L10-L11
# https://github.com/pulumi/pulumi/blob/0acaf8060640fdd892abccf1ce7435cd6aae69fe/sdk/python/scripts/test_fast.sh#L16
installCheckPhase = ''
runHook preInstallCheck
declare -a _disabledTestPathsArray
concatTo _disabledTestPathsArray disabledTestPaths
${python.executable} -m pytest --junit-xml= --ignore=lib/test/automation lib/test \
"''${_disabledTestPathsArray[@]/#/--deselect=}"
pushd lib/test_with_mocks
${python.executable} -m pytest --junit-xml=
popd
runHook postInstallCheck
'';
# Allow local networking in tests on Darwin
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "pulumi" ];
meta = {
description = "Modern Infrastructure as Code. Any cloud, any language";
homepage = "https://www.pulumi.com";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
teto
tie
];
};
}
|