about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-02-25 12:01:47 +0000
committerGitHub <noreply@github.com>2024-02-25 12:01:47 +0000
commit9b733e0efe1d60d2a793796a229f585bc0093e88 (patch)
tree11f51351f046e766a87ddd43633282a672db571e /pkgs/development/tools
parentf8de949eef6e61c0bfd104a04dbd068583a354e5 (diff)
parent147c28caad10707f517a3009f5892fb77bfb542f (diff)
downloadnixlib-9b733e0efe1d60d2a793796a229f585bc0093e88.tar
nixlib-9b733e0efe1d60d2a793796a229f585bc0093e88.tar.gz
nixlib-9b733e0efe1d60d2a793796a229f585bc0093e88.tar.bz2
nixlib-9b733e0efe1d60d2a793796a229f585bc0093e88.tar.lz
nixlib-9b733e0efe1d60d2a793796a229f585bc0093e88.tar.xz
nixlib-9b733e0efe1d60d2a793796a229f585bc0093e88.tar.zst
nixlib-9b733e0efe1d60d2a793796a229f585bc0093e88.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/aws-sam-cli/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/tools/aws-sam-cli/default.nix b/pkgs/development/tools/aws-sam-cli/default.nix
index 093c5a1ab9e0..45c3e4c62a7a 100644
--- a/pkgs/development/tools/aws-sam-cli/default.nix
+++ b/pkgs/development/tools/aws-sam-cli/default.nix
@@ -10,7 +10,7 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "aws-sam-cli";
-  version = "1.103.0";
+  version = "1.108.0";
   format = "pyproject";
 
   disabled = python3.pythonOlder "3.8";
@@ -19,7 +19,7 @@ python3.pkgs.buildPythonApplication rec {
     owner = "aws";
     repo = "aws-sam-cli";
     rev = "refs/tags/v${version}";
-    hash = "sha256-oy0+dAA6x8Jl1nZ1wjsR9xvpR9biemTtqL9B1awz4BM=";
+    hash = "sha256-k6SXCFkISyfr5/0vhe/Dfzs4qsVfu14lFx/bl53QxR4=";
   };
 
   nativeBuildInputs = with python3.pkgs; [
@@ -30,6 +30,7 @@ python3.pkgs.buildPythonApplication rec {
   pythonRelaxDeps = [
     "aws-sam-translator"
     "boto3-stubs"
+    "cfn-lint"
     "tzlocal"
     "cookiecutter"
     "docker"
@@ -92,6 +93,7 @@ python3.pkgs.buildPythonApplication rec {
     flaky
     parameterized
     psutil
+    pytest-timeout
     pytest-xdist
     pytestCheckHook
   ];