summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-07-30 14:28:08 +0200
committerGitHub <noreply@github.com>2018-07-30 14:28:08 +0200
commit0349f796f2fc94cba2e04ea442ee29f7b3f8127c (patch)
tree7fb5e6a1a8bd20c3ae45339ed782d0d4cda7c694 /pkgs/development/tools
parent1e54a4e5e9521d37a76632d5b9c9dfa50b9a3f2c (diff)
parent3e1cb3ef61fd4c9455c7e055698086c1876846b9 (diff)
downloadnixlib-0349f796f2fc94cba2e04ea442ee29f7b3f8127c.tar
nixlib-0349f796f2fc94cba2e04ea442ee29f7b3f8127c.tar.gz
nixlib-0349f796f2fc94cba2e04ea442ee29f7b3f8127c.tar.bz2
nixlib-0349f796f2fc94cba2e04ea442ee29f7b3f8127c.tar.lz
nixlib-0349f796f2fc94cba2e04ea442ee29f7b3f8127c.tar.xz
nixlib-0349f796f2fc94cba2e04ea442ee29f7b3f8127c.tar.zst
nixlib-0349f796f2fc94cba2e04ea442ee29f7b3f8127c.zip
Merge pull request #44219 from andreabedini/aws-sam-cli-0-5-0
aws-sam-cli: 0.4.0 -> 0.5.0
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/aws-sam-cli/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/pkgs/development/tools/aws-sam-cli/default.nix b/pkgs/development/tools/aws-sam-cli/default.nix
index e33d6b26b12b..8778084163e8 100644
--- a/pkgs/development/tools/aws-sam-cli/default.nix
+++ b/pkgs/development/tools/aws-sam-cli/default.nix
@@ -6,11 +6,11 @@ with python.pkgs;
 
 buildPythonApplication rec {
   pname = "aws-sam-cli";
-  version = "0.4.0";
+  version = "0.5.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "4740bfa23f39880d807aa75a2143259f7f15eec34c5fa5dde8fc04d8563ef521";
+    sha256 = "2acf9517f467950adb4939746658091e60cf60ee80093ffd0d3d821cb8a1f9fc";
   };
 
   # Tests are not included in the PyPI package
@@ -21,13 +21,20 @@ buildPythonApplication rec {
     boto3
     click
     cookiecutter
+    dateparser
     docker
     enum34
     flask
+    python-dateutil
     pyyaml
     six
   ];
 
+  postPatch = ''
+    substituteInPlace ./requirements/base.txt \
+      --replace 'aws-sam-translator==1.6.0' 'aws-sam-translator>=1.6.0';
+  '';
+
   meta = with lib; {
     homepage = https://github.com/awslabs/aws-sam-cli;
     description = "CLI tool for local development and testing of Serverless applications";