depot/third_party/nixpkgs/pkgs/development/python-modules/pulumi/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

69 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
protobuf,
dill,
grpcio,
pulumi,
isPy27,
semver,
pip,
pytestCheckHook,
pyyaml,
six,
}:
buildPythonPackage rec {
inherit (pulumi) version src;
pname = "pulumi";
format = "setuptools";
disabled = isPy27;
propagatedBuildInputs = [
semver
protobuf
dill
grpcio
pyyaml
six
];
nativeCheckInputs = [
pip
pulumi.pkgs.pulumi-language-python
pytestCheckHook
];
pytestFlagsArray = [ "test/" ];
sourceRoot = "${src.name}/sdk/python/lib";
# we apply the modifications done in the pulumi/sdk/python/Makefile
# but without the venv code
postPatch = ''
cp ../../README.md .
substituteInPlace setup.py \
--replace "3.0.0" "${version}" \
--replace "grpcio==1.56.2" "grpcio" \
--replace "semver~=2.13" "semver"
'';
# Allow local networking in tests on Darwin
__darwinAllowLocalNetworking = true;
# Verify that the version substitution works
preCheck = ''
pip show "${pname}" | grep "Version: ${version}" > /dev/null \
|| (echo "ERROR: Version substitution seems to be broken"; exit 1)
'';
pythonImportsCheck = [ "pulumi" ];
meta = with lib; {
description = "Modern Infrastructure as Code. Any cloud, any language";
homepage = "https://github.com/pulumi/pulumi";
license = licenses.asl20;
maintainers = with maintainers; [ teto ];
};
}