summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaxine <35892750+maxeaubrey@users.noreply.github.com>2022-12-13 01:32:53 +0100
committerGitHub <noreply@github.com>2022-12-13 01:32:53 +0100
commitc9f537cf9b3f1866e0fc5fe71fc60ac46a09f1a9 (patch)
tree3a833ecf5af4f0300b55f51c08f880ae7f386a75
parentMerge pull request #205817 from atorres1985-contrib/cpm-cmake (diff)
parentawscli2: 2.9.4 -> 2.9.6 (diff)
downloadnixpkgs-c9f537cf9b3f1866e0fc5fe71fc60ac46a09f1a9.tar.gz
Merge pull request #205372 from anthonyroussel/awscli2
awscli2: 2.9.4 -> 2.9.6
-rw-r--r--pkgs/tools/admin/awscli2/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/tools/admin/awscli2/default.nix b/pkgs/tools/admin/awscli2/default.nix
index 4431283f40d5..c6ee509df358 100644
--- a/pkgs/tools/admin/awscli2/default.nix
+++ b/pkgs/tools/admin/awscli2/default.nix
@@ -34,14 +34,14 @@ let
in
with py.pkgs; buildPythonApplication rec {
pname = "awscli2";
- version = "2.9.4"; # N.B: if you change this, check if overrides are still up-to-date
+ version = "2.9.6"; # N.B: if you change this, check if overrides are still up-to-date
format = "pyproject";
src = fetchFromGitHub {
owner = "aws";
repo = "aws-cli";
rev = version;
- sha256 = "sha256-zmyn9hotkePRap9qVzAZi1u4YuiT+Qt+IDh7TD0Yq9A=";
+ hash = "sha256-3zB0Uy2pmkrOLb+/mXZGs/pnzo6zi2zVPyeNPGPVQJM=";
};
nativeBuildInputs = [
@@ -61,7 +61,6 @@ with py.pkgs; buildPythonApplication rec {
pyyaml
rsa
ruamel-yaml
- wcwidth
python-dateutil
jmespath
urllib3
@@ -77,8 +76,6 @@ with py.pkgs; buildPythonApplication rec {
substituteInPlace pyproject.toml \
--replace "colorama>=0.2.5,<0.4.4" "colorama" \
--replace "distro>=1.5.0,<1.6.0" "distro" \
- --replace "docutils>=0.10,<0.16" "docutils" \
- --replace "wcwidth<0.2.0" "wcwidth" \
--replace "cryptography>=3.3.2,<=38.0.1" "cryptography>=3.3.2,<=38.0.3"
'';