fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
46 lines
1 KiB
Nix
46 lines
1 KiB
Nix
{
|
|
lib,
|
|
awacs,
|
|
buildPythonPackage,
|
|
cfn-flip,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
typing-extensions,
|
|
unittestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "troposphere";
|
|
version = "4.8.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloudtools";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-JmoPXYEqaFxDIW8NmmZ8VpKX9gfZ1rVFu+dPZOL7C5k=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ cfn-flip ] ++ lib.optionals (pythonOlder "3.8") [ typing-extensions ];
|
|
|
|
nativeCheckInputs = [
|
|
awacs
|
|
unittestCheckHook
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
policy = [ awacs ];
|
|
};
|
|
|
|
pythonImportsCheck = [ "troposphere" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to create AWS CloudFormation descriptions";
|
|
homepage = "https://github.com/cloudtools/troposphere";
|
|
changelog = "https://github.com/cloudtools/troposphere/blob/${version}/CHANGELOG.rst";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ jlesquembre ];
|
|
};
|
|
}
|