aws-sam-cli: init at 0.3.0 (#41877)
This commit is contained in:
parent
d79a5057d3
commit
35191af2e6
37
pkgs/development/tools/aws-sam-cli/default.nix
Normal file
37
pkgs/development/tools/aws-sam-cli/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, python
|
||||
}:
|
||||
|
||||
with python;
|
||||
|
||||
pkgs.buildPythonApplication rec {
|
||||
pname = "aws-sam-cli";
|
||||
version = "0.3.0";
|
||||
|
||||
src = pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7e7275a34e7e9d926198fd9516404310faa2a9681b7a8b0c8b2f9aa31aeb1bfb";
|
||||
};
|
||||
|
||||
# Tests are not included in the PyPI package
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = with pkgs; [
|
||||
aws-sam-translator
|
||||
boto3
|
||||
click
|
||||
cookiecutter
|
||||
docker
|
||||
enum34
|
||||
flask
|
||||
pyyaml
|
||||
six
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/awslabs/aws-sam-cli;
|
||||
description = "CLI tool for local development and testing of Serverless applications";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ andreabedini ];
|
||||
};
|
||||
}
|
@ -571,6 +571,8 @@ with pkgs;
|
||||
|
||||
aws_shell = pythonPackages.callPackage ../tools/admin/aws_shell { };
|
||||
|
||||
aws-sam-cli = callPackage ../development/tools/aws-sam-cli { };
|
||||
|
||||
aws-vault = callPackage ../tools/admin/aws-vault { };
|
||||
|
||||
iamy = callPackage ../tools/admin/iamy { };
|
||||
|
Loading…
Reference in New Issue
Block a user