about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSimon Lackerbauer <simon@lackerbauer.com>2020-03-18 19:43:56 +0100
committerJon <jonringer@users.noreply.github.com>2020-03-18 15:51:39 -0700
commit5e331582d2308509fbd6846c38fe6eeb4448358e (patch)
tree813e5d4ffe1392112224fd9063fd16660654f0e8
parent353016430ada46763244d251b2fe696ec5da1496 (diff)
downloadnixlib-5e331582d2308509fbd6846c38fe6eeb4448358e.tar
nixlib-5e331582d2308509fbd6846c38fe6eeb4448358e.tar.gz
nixlib-5e331582d2308509fbd6846c38fe6eeb4448358e.tar.bz2
nixlib-5e331582d2308509fbd6846c38fe6eeb4448358e.tar.lz
nixlib-5e331582d2308509fbd6846c38fe6eeb4448358e.tar.xz
nixlib-5e331582d2308509fbd6846c38fe6eeb4448358e.tar.zst
nixlib-5e331582d2308509fbd6846c38fe6eeb4448358e.zip
aws-sam-cli: 0.43.0 -> 0.44.0
-rw-r--r--pkgs/development/tools/aws-sam-cli/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/tools/aws-sam-cli/default.nix b/pkgs/development/tools/aws-sam-cli/default.nix
index 38fd32f38b65..94ca01faef2c 100644
--- a/pkgs/development/tools/aws-sam-cli/default.nix
+++ b/pkgs/development/tools/aws-sam-cli/default.nix
@@ -30,11 +30,11 @@ with py.pkgs;
 
 buildPythonApplication rec {
   pname = "aws-sam-cli";
-  version = "0.43.0";
+  version = "0.44.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0v852636chil5n4cjqjvh29hhik881pkljs64jy5jiznbrph9ryr";
+    sha256 = "0r3m41xjmg8m2jwsqwc9kdkcs3xbz8dsl240ybwbnr7rp29pnirf";
   };
 
   # Tests are not included in the PyPI package
@@ -50,6 +50,7 @@ buildPythonApplication rec {
     docker
     flask
     idna
+    jmespath
     pathlib2
     requests
     serverlessrepo
@@ -65,11 +66,9 @@ buildPythonApplication rec {
   # fix over-restrictive version bounds
   postPatch = ''
     substituteInPlace requirements/base.txt \
-      --replace "requests==2.20.1" "requests==2.22.0" \
       --replace "serverlessrepo==0.1.9" "serverlessrepo~=0.1.9" \
-      --replace "six~=1.11.0" "six~=1.12.0" \
       --replace "python-dateutil~=2.6, <2.8.1" "python-dateutil~=2.6" \
-      --replace "PyYAML~=3.12" "PyYAML~=5.1"
+      --replace "tomlkit==0.5.8" "tomlkit~=0.5.8" \
   '';
 
   meta = with lib; {