Unverified Commit 8100cafa authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

awscli2: prevent propagating inputs (#300186)

parents f8e00f2c a44b0f63
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"
  ];