blob: ef626df9bd36adc89626e6e733431a2803d92e0c (
plain)
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
|
{
lib,
awacs,
buildPythonPackage,
cfn-flip,
fetchFromGitHub,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "troposphere";
version = "4.9.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "cloudtools";
repo = "troposphere";
tag = version;
hash = "sha256-s7eb8W/QjD+lNmq3bPhCP3tH8VV/xNf3cE2dGzWAgFk=";
};
propagatedBuildInputs = [ cfn-flip ];
nativeCheckInputs = [
awacs
unittestCheckHook
];
optional-dependencies = {
policy = [ awacs ];
};
pythonImportsCheck = [ "troposphere" ];
meta = {
description = "Library to create AWS CloudFormation descriptions";
homepage = "https://github.com/cloudtools/troposphere";
changelog = "https://github.com/cloudtools/troposphere/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ jlesquembre ];
};
}
|