about summary refs log tree commit diff
path: root/pkgs/development/tools/aws-sam-cli
diff options
context:
space:
mode:
authorKeshav Kini <keshav.kini@gmail.com>2021-04-27 08:14:58 -0700
committerKeshav Kini <keshav.kini@gmail.com>2021-04-27 13:52:27 -0700
commited3270a36f0bdc9baca89a784a5d8936814329b6 (patch)
treeac7b8d10ef4e422a17278d73241484f4b80376b7 /pkgs/development/tools/aws-sam-cli
parent7e6dd260a82a91a6fce6fa8215091450bdc200ae (diff)
aws-sam-cli: 1.14.0 -> 1.23.0
Diffstat (limited to 'pkgs/development/tools/aws-sam-cli')
-rw-r--r--pkgs/development/tools/aws-sam-cli/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/tools/aws-sam-cli/default.nix b/pkgs/development/tools/aws-sam-cli/default.nix
index 1429fcab4c68d..3837e2e370767 100644
--- a/pkgs/development/tools/aws-sam-cli/default.nix
+++ b/pkgs/development/tools/aws-sam-cli/default.nix
@@ -5,11 +5,11 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "aws-sam-cli";
-  version = "1.14.0";
+  version = "1.23.0";
 
   src = python3.pkgs.fetchPypi {
     inherit pname version;
-    sha256 = "E+xIS0Z3M/ilBswH8XwXWnGb9gbDRuuKKE39qau9fFc=";
+    sha256 = "0j0q6p08c3l9z0yc2cggw797k47cjh6ljpchiqgg0fh6mk32215f";
   };
 
   # Tests are not included in the PyPI package
@@ -40,10 +40,8 @@ python3.pkgs.buildPythonApplication rec {
   # fix over-restrictive version bounds
   postPatch = ''
     substituteInPlace requirements/base.txt \
-      --replace "boto3~=1.14.23" "boto3~=1.14" \
       --replace "dateparser~=0.7" "dateparser>=0.7" \
       --replace "docker~=4.2.0" "docker>=4.2.0" \
-      --replace "python-dateutil~=2.6, <2.8.1" "python-dateutil~=2.6" \
       --replace "requests==2.23.0" "requests~=2.24" \
       --replace "watchdog==0.10.3" "watchdog"
   '';