11 buildPythonPackage rec {
12 pname = "troposphere";
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 rev = "refs/tags/${version}";
22 hash = "sha256-9zzbBtIJ4v+eI0eJZ6vGUABN4i9GLJcMAzerRSnzpqQ=";
25 propagatedBuildInputs = [
27 ] ++ lib.optionals (pythonOlder "3.8") [
36 passthru.optional-dependencies = {
42 pythonImportsCheck = [
47 description = "Library to create AWS CloudFormation descriptions";
48 homepage = "https://github.com/cloudtools/troposphere";
49 changelog = "https://github.com/cloudtools/troposphere/blob/${version}/CHANGELOG.rst";
50 license = licenses.bsd2;
51 maintainers = with maintainers; [ jlesquembre ];