mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
35 lines
698 B
Nix
35 lines
698 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, boto3
|
|
, enum34
|
|
, jsonschema
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aws-sam-translator";
|
|
version = "1.32.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "jL+sAlKbeXA1QeJVQbAcgIaPEbD/Ko+QMrI1Ew2dVq4=";
|
|
};
|
|
|
|
# Tests are not included in the PyPI package
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [
|
|
boto3
|
|
jsonschema
|
|
six
|
|
] ++ lib.optionals (pythonOlder "3.4") [ enum34 ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/awslabs/serverless-application-model";
|
|
description = "Python library to transform SAM templates into AWS CloudFormation templates";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|