Fabian Affolter
83845ea052
awscli2: 2.35.11 -> 2.36.31
...
Diff: https://github.com/aws/aws-cli/compare/2.35.11...2.36.31
Changelog: https://github.com/aws/aws-cli/blob/2.36.31/CHANGELOG.rst
2026-08-26 11:21:49 +02:00
Sandro
720496acdd
awscli2: 2.34.24 -> 2.35.11 ( #536046 )
2026-07-10 22:36:33 +00:00
Morgan Helton
5ee94d0c8f
awscli2: use standard-format CA bundle for awscrt
2026-07-04 12:20:53 -05:00
Morgan Helton
e1dc830f54
awscli2: relax urllib3 version constraint
2026-07-04 12:07:02 -05:00
Morgan Helton
76e82c9145
awscli2: 2.34.24 -> 2.35.11
2026-06-27 09:28:25 -05:00
Sandro
cd3f94325b
{awscli2, python3Packages.botocore}: replace vendored certs ( #490115 )
2026-06-13 21:33:40 +00:00
Kirill Radzikhovskyy
cad2b94e60
awscli2: loosen jmespath version constraint
2026-05-09 18:28:21 +10:00
Morgan Helton
208fa7a5d3
awscli2: 2.33.2 -> 2.34.24
2026-04-05 09:16:41 -05:00
Aaron Jheng
f618621884
awscli2: fix zsh completion
2026-03-20 09:59:18 +08:00
Rohit Singh
222a2527d2
awscli2: replace vendored certs
2026-02-13 08:38:23 -05:00
Anthony Roussel
7b609d9b93
awscli2: 2.32.15 -> 2.33.2
...
Diff: https://github.com/aws/aws-cli/compare/2.32.15...2.33.2
Changelog: https://github.com/aws/aws-cli/blob/2.33.2/CHANGELOG.rst
2026-01-18 22:40:15 +01:00
Duc Nghiem-Xuan
48a82481fd
awscli2: 2.31.39 -> 2.32.15
2025-12-12 11:43:39 +09:00
Wolfgang Walther
de7ce5a925
maintainers: drop bhipple
...
Reacted to 1 out of 57 maintainer pings in the least 180 days.
2025-12-09 21:05:55 +01:00
Bryan A. S.
2ab0c48b03
maintainers: drop bryanasdev000
2025-11-26 13:42:02 -03:00
kirillrdy
0693db9dee
awscli2: 2.31.11 -> 2.31.39 ( #463079 )
2025-11-22 21:28:21 +00:00
Kirill Radzikhovskyy
554a524091
awscli2: fix prompt-toolkit source override
...
Update the hash and add the `tag` attribute for the prompt-toolkit 3.0.51 override.
2025-11-23 07:05:27 +11:00
Morgan Helton
0d08c5b492
awscli2: 2.31.11 -> 2.31.39
2025-11-18 21:55:43 -06:00
Morgan Helton
7d7e01bc8e
awscli2: 2.30.6 -> 2.31.11
2025-10-09 11:00:00 -04:00
Morgan Helton
7c72ea5aa3
awscli2: pin prompt-toolkit to 3.0.51
2025-10-09 10:29:39 -04:00
Morgan Helton
0f3602a90f
awscli2: 2.28.1 -> 2.30.6
2025-09-19 19:53:05 -05:00
Johan Herland
81c9d2f4be
awscli2: Prevent pollution from other Python packages/envs
...
Prevent awscli2 from being polluted by other packages/environments
setting $PYTHONPATH or $NIX_PYTHONPATH.
Solves https://github.com/NixOS/nixpkgs/issues/47900 .
2025-09-15 13:26:28 +02:00
Olivér Falvai
5b6153aa63
awscli2: fix urllib3 override
...
https://hydra.nixos.org/build/305091539
2025-08-18 20:17:27 +02:00
R. Ryantm
de74240d03
awscli2: 2.27.61 -> 2.28.1
2025-08-02 19:48:24 +02:00
ulucs
6972e98595
awscli2: 2.27.50 -> 2.27.61
2025-07-29 14:19:34 +02:00
Wolfgang Walther
5a0711127c
treewide: run nixfmt 1.0.0
2025-07-24 13:55:40 +02:00
R. Ryantm
780511f79b
awscli2: 2.27.49 -> 2.27.50
2025-07-15 18:05:26 +00:00
nixpkgs-ci[bot]
d23574df3a
Merge master into staging-next
2025-07-06 11:22:41 +00:00
R. Ryantm
80554b2d5c
awscli2: 2.27.31 -> 2.27.49
2025-07-06 09:12:17 +00:00
Alyssa Ross
e0910df589
Merge remote-tracking branch 'origin/staging-next' into staging
...
Conflicts:
pkgs/by-name/me/meson/package.nix
2025-07-02 14:49:42 +02:00
Martin Weinelt
ae4a1a485a
treewide: add explicit format attribute for Python packages
...
If a Python package does not come with either `format` or `pyproject` we
consider it a setuptools build, that calls `setup.py` directly, which is
deprecated.
This change, as a first step, migrates a large chunk of these packages to
set setuptools as their explicit format
This is so we can unify the problem space for the next step of the
migration.
2025-07-02 05:56:47 +02:00
Yueh-Shun Li
76e2a397c2
treewide: pytestFlagsArray -> pytestFlags and join flag and option argument
...
This treewide change targets Python packages
that specifies pytest flags with pytestFlagsArray,
and whose flags cannot be consructed by other pytestCheckHook-honoured arguments.
Use the __structuredAttrs-agnostic argument pytestFlags
instead of the deprecated pytestFlagsArray.
For flags with option arguments,
join each flag and their option argument into a single command-line argument
following POSIX Utility Argument Syntax[1]
for easier overriding (remove/replace).
Examples:
* [ "-W" "ignore:message:WarningClass" ] ->
[ "-Wignore:message:WarningClass" ]
* [ "--reruns" "3" ] ->
[ "--reruns=3" ]
[1]: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html
2025-06-16 01:02:16 +08:00
Robert Schütz
7c42455059
awscli2: 2.27.8 -> 2.27.31
...
Diff: https://github.com/aws/aws-cli/compare/refs/tags/2.27.8...refs/tags/2.27.31
Changelog: https://github.com/aws/aws-cli/blob/2.27.31/CHANGELOG.rst
2025-06-09 11:14:02 -07:00
nixpkgs-ci[bot]
1c8c1864d6
Merge master into staging-next
2025-06-03 18:06:20 +00:00
liberodark
51104bca6e
treewide: remove with lib Part 1
2025-06-03 18:27:59 +05:30
Robert Schütz
e9b5d5329a
awscli2: 2.27.2 -> 2.27.8
...
Diff: https://github.com/aws/aws-cli/compare/refs/tags/2.27.2...refs/tags/2.27.8
Changelog: https://github.com/aws/aws-cli/blob/2.27.8/CHANGELOG.rst
2025-05-23 08:37:41 -07:00
R. Ryantm
c49a8611ae
awscli2: 2.26.4 -> 2.27.2
2025-04-26 08:01:08 +00:00
Morgan Helton
8eba66dcc0
awscli2: 2.25.5 -> 2.26.4
2025-04-18 09:28:26 -05:00
Ihar Hrachyshka
f2798e4b65
awscli2: relax ruamel.yaml.clib dependency
...
It was bumped in c861a11e71 beyond the
upstream cap. It should be ok to remove the cap since the dependency is
applicable for python 3.10 and earlier, as per the comment in the
patched file:
c24bf195ca/pyproject.toml (L37)
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com >
2025-04-06 17:21:28 -04:00
R. Ryantm
f27ec3a00d
awscli2: 2.24.24 -> 2.25.5
2025-03-27 19:49:00 +00:00
R. Ryantm
b204ffc0e8
awscli2: 2.24.22 -> 2.24.24
2025-03-16 21:28:14 +00:00
Philip White
6dd39fc783
awscli2: 2.24.16 -> 2.24.22
2025-03-11 15:47:55 -07:00
R. Ryantm
91e0792093
awscli2: 2.24.7 -> 2.24.16
2025-03-04 03:35:19 +00:00
nixpkgs-merge-bot[bot]
d57b2746e4
awscli2: 2.23.11 -> 2.24.7 ( #383267 )
...
Co-authored-by: devusb <devusb@users.noreply.github.com >
2025-02-28 14:52:47 +00:00
R. Ryantm
e4883d63a8
awscli2: 2.23.11 -> 2.24.7
2025-02-19 06:56:24 +00:00
nixpkgs-ci[bot]
c91a43b5e5
Merge staging-next into staging
2025-02-04 12:06:36 +00:00
Olivér Falvai
01d4fe1926
awscli2: 2.23.5 -> 2.23.11
...
Also fixes this dependency mismatch: https://hydra.nixos.org/build/287461057
2025-02-02 13:16:59 +01:00
Vladimír Čunát
5ee47dcd0b
various: make packages build with darwin sandbox ( #374982 )
2025-02-02 12:56:48 +01:00
Pol Dellaiera
ce1e95c45f
awscli2: use addBinToPathHook and writableTmpDirAsHomeHook
2025-01-30 22:15:10 +01:00
R. Ryantm
1aa2134be2
awscli2: 2.23.2 -> 2.23.5
2025-01-24 15:24:11 +00:00
Olivér Falvai
a7bb9745cb
awscli2: make it build with darwin sandbox
2025-01-19 09:58:27 +01:00