Skip to content

Commit

Permalink
awscli: move to pythonPackages
Browse files Browse the repository at this point in the history
This allows to have awscli running both under python 2 and 3 as
necessary.
  • Loading branch information
zimbatm committed Jan 10, 2018
1 parent efcbc5b commit 29b8e5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -533,7 +533,7 @@ with pkgs;

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

awscli = pythonPackages.callPackage ../tools/admin/awscli { };
awscli = pythonPackages.awscli;

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

Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -175,6 +175,8 @@ in {

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

awscli = callPackage ../tools/admin/awscli { };

# packages defined elsewhere

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

1 comment on commit 29b8e5f

@zimbatm
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see ffd35a7 for discussion

Please sign in to comment.