at 24.11-pre 49 lines 997 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 parver, 6 pulumi, 7 pythonOlder, 8 semver, 9 setuptools, 10}: 11 12buildPythonPackage rec { 13 pname = "pulumi-aws"; 14 # Version is independant of pulumi's. 15 version = "6.37.0"; 16 17 pyproject = true; 18 build-system = [ setuptools ]; 19 20 disabled = pythonOlder "3.8"; 21 22 src = fetchFromGitHub { 23 owner = "pulumi"; 24 repo = "pulumi-aws"; 25 rev = "refs/tags/v${version}"; 26 hash = "sha256-jThsT+OBBl3RQKLTxobXqgSlcyxYo5ZYsm+VaEwAJAk="; 27 }; 28 29 sourceRoot = "${src.name}/sdk/python"; 30 31 propagatedBuildInputs = [ 32 parver 33 pulumi 34 semver 35 ]; 36 37 # Checks require cloud resources 38 doCheck = false; 39 40 pythonImportsCheck = [ "pulumi_aws" ]; 41 42 meta = with lib; { 43 description = "Pulumi python amazon web services provider"; 44 homepage = "https://github.com/pulumi/pulumi-aws"; 45 changelog = "https://github.com/pulumi/pulumi-aws/releases/tag/v${version}"; 46 license = licenses.asl20; 47 maintainers = with maintainers; [ ]; 48 }; 49}