Skip to content

Commit 29b8e5f

Browse files
committedJan 10, 2018
awscli: move to pythonPackages
This allows to have awscli running both under python 2 and 3 as necessary.
1 parent efcbc5b commit 29b8e5f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎pkgs/top-level/all-packages.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ with pkgs;
533533

534534
avfs = callPackage ../tools/filesystems/avfs { };
535535

536-
awscli = pythonPackages.callPackage ../tools/admin/awscli { };
536+
awscli = pythonPackages.awscli;
537537

538538
awsebcli = callPackage ../tools/virtualization/awsebcli {};
539539

‎pkgs/top-level/python-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,8 @@ in {
175175

176176
aws-xray-sdk = callPackage ../development/python-modules/aws-xray-sdk { };
177177

178+
awscli = callPackage ../tools/admin/awscli { };
179+
178180
# packages defined elsewhere
179181

180182
backports_csv = callPackage ../development/python-modules/backports_csv {};

1 commit comments

Comments
 (1)

zimbatm commented on Jan 15, 2018

@zimbatm
MemberAuthor

see ffd35a7 for discussion

Please sign in to comment.