Commit a44b0f63 authored by Nils's avatar Nils
Browse files

awscli2: prevent propagating inputs

Prevents awscli2 from polluting the environment when using nix-shell
parent 70e46c58
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -141,6 +141,12 @@ py.pkgs.buildPythonApplication rec {
    export HOME=$(mktemp -d)
  '';

  # Propagating dependencies leaks them through $PYTHONPATH which causes issues
  # when used in nix-shell.
  postFixup = ''
    rm $out/nix-support/propagated-build-inputs
  '';

  pytestFlagsArray = [
    "-Wignore::DeprecationWarning"
  ];