aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/admin/aws_shell/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/admin/aws_shell/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/admin/aws_shell/default.nix13
1 files changed, 5 insertions, 8 deletions
diff --git a/nixpkgs/pkgs/tools/admin/aws_shell/default.nix b/nixpkgs/pkgs/tools/admin/aws_shell/default.nix
index c319c47ea7e..95f1df39576 100644
--- a/nixpkgs/pkgs/tools/admin/aws_shell/default.nix
+++ b/nixpkgs/pkgs/tools/admin/aws_shell/default.nix
@@ -1,20 +1,16 @@
{ stdenv
-, buildPythonPackage
-, fetchPypi
, awscli
-, prompt_toolkit
-, boto3
-, configobj
-, pygments
}:
+with awscli.python.pkgs;
+
buildPythonPackage rec {
pname = "aws-shell";
- version = "0.2.0";
+ version = "0.2.1";
src = fetchPypi {
inherit pname version;
- sha256 = "b46a673b81254e5e014297e08c9ecab535773aa651ca33dc3786a1fd612f9810";
+ sha256 = "2044b0ef78c7542c392f2cee4b74a4439545c63dda0a3e28b712fff53e8e5823";
};
# Why does it propagate packages that are used for testing?
@@ -24,6 +20,7 @@ buildPythonPackage rec {
boto3
configobj
pygments
+ pyyaml
];
#Checks are failing due to missing TTY, which won't exist.