49 lines
982 B
Nix
49 lines
982 B
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, parver
|
|
, pulumi
|
|
, pythonOlder
|
|
, semver
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pulumi-aws";
|
|
# Version is independant of pulumi's.
|
|
version = "5.41.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pulumi";
|
|
repo = "pulumi-aws";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-axVzystW9kvyMP35h/GCN1Cy1y8CYNxZglWeXVJfWSc=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/sdk/python";
|
|
|
|
propagatedBuildInputs = [
|
|
parver
|
|
pulumi
|
|
semver
|
|
];
|
|
|
|
# Checks require cloud resources
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pulumi_aws"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Pulumi python amazon web services provider";
|
|
homepage = "https://github.com/pulumi/pulumi-aws";
|
|
changelog = "https://github.com/pulumi/pulumi-aws/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ costrouc ];
|
|
};
|
|
}
|