awscli: 1.32.21 -> 1.32.58
Changelog: https://github.com/aws/aws-cli/blob/1.32.58/CHANGELOG.rst
This commit is contained in:
parent
f7e15ebcd8
commit
1f3ee79aef
1 changed files with 17 additions and 3 deletions
|
@ -10,16 +10,30 @@
|
|||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "awscli";
|
||||
version = "1.32.21"; # N.B: if you change this, change botocore and boto3 to a matching version too
|
||||
version = "1.32.58"; # N.B: if you change this, change botocore and boto3 to a matching version too
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-euz3pcTKCPjgP7mKVoOf/62JPp0rRevbcYf/RfZTNd0=";
|
||||
hash = "sha256-dffY/BKsQ7vztW2sGn+WaZB0fXnqwwVjA4nkVwRZ1js=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3.pkgs.pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"colorama"
|
||||
"docutils"
|
||||
"rsa"
|
||||
];
|
||||
|
||||
build-system = [
|
||||
python3.pkgs.setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
botocore
|
||||
bcdoc
|
||||
s3transfer
|
||||
colorama
|
||||
docutils
|
||||
|
|
Loading…
Reference in a new issue