summary refs log tree commit diff
diff options
context:
space:
mode:
authorCasey Ransom <casey@dailykos.com>2020-06-29 14:29:37 -0400
committerCasey Ransom <casey@dailykos.com>2020-06-29 14:29:37 -0400
commitc7705e6339844d68fa4fdde1b4e875a1bdac1ffb (patch)
tree734fbf9766b85d1533552c5002f0e66d45d42dbf
parent15e8fa9f96f227531d9f9cc5cf8e6a0ffcf306d7 (diff)
downloadnixpkgs-c7705e6339844d68fa4fdde1b4e875a1bdac1ffb.tar
nixpkgs-c7705e6339844d68fa4fdde1b4e875a1bdac1ffb.tar.gz
nixpkgs-c7705e6339844d68fa4fdde1b4e875a1bdac1ffb.tar.bz2
nixpkgs-c7705e6339844d68fa4fdde1b4e875a1bdac1ffb.tar.lz
nixpkgs-c7705e6339844d68fa4fdde1b4e875a1bdac1ffb.tar.xz
nixpkgs-c7705e6339844d68fa4fdde1b4e875a1bdac1ffb.tar.zst
nixpkgs-c7705e6339844d68fa4fdde1b4e875a1bdac1ffb.zip
aws_shell: remove
It appears to have been broken for the last few releases and has had no
upstream updates for the last 2 years. I originally committed this but
didn't add myself to maintainers.
-rw-r--r--pkgs/tools/admin/aws_shell/default.nix44
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 0 insertions, 46 deletions
diff --git a/pkgs/tools/admin/aws_shell/default.nix b/pkgs/tools/admin/aws_shell/default.nix
deleted file mode 100644
index 104c2f1e44a..00000000000
--- a/pkgs/tools/admin/aws_shell/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ stdenv
-, awscli
-}:
-
-with awscli.python.pkgs;
-
-buildPythonPackage rec {
-  pname = "aws-shell";
-  version = "0.2.1";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "2044b0ef78c7542c392f2cee4b74a4439545c63dda0a3e28b712fff53e8e5823";
-  };
-
-  # Why does it propagate packages that are used for testing?
-  propagatedBuildInputs = [
-    awscli
-    prompt_toolkit
-    boto3
-    configobj
-    pygments
-    pyyaml
-  ];
-
-  postPatch = ''
-    substituteInPlace setup.py \
-     --replace "prompt-toolkit>=1.0.0,<1.1.0" "prompt-toolkit"
-  '';
-
-  #Checks are failing due to missing TTY, which won't exist.
-  doCheck = false;
-  preCheck = ''
-    mkdir -p check-phase
-    export HOME=$(pwd)/check-phase
-  '';
-
-  meta = with stdenv.lib; {
-    homepage = "https://github.com/awslabs/aws-shell";
-    description = "An integrated shell for working with the AWS CLI";
-    license = licenses.asl20;
-    maintainers = [ ];
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 6c6bcecc645..753090b44cb 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -773,8 +773,6 @@ in
 
   aws-rotate-key = callPackage ../tools/admin/aws-rotate-key { };
 
-  aws_shell = callPackage ../tools/admin/aws_shell { };
-
   aws-sam-cli = callPackage ../development/tools/aws-sam-cli { python = python3; };
 
   aws-vault = callPackage ../tools/admin/aws-vault { };