Revert "Re-revert "awscli: Get rid of runtime -dev dependencies""

This reverts commit a1eacb900e.

Adding dev outputs to python packages means they can't be included in
a Python environment created with python3.withPackages, because
makePythonPath will include the dev output, which is empty apart from
nix-support, rather than the out output, which contains all the Python
code.
This commit is contained in:
Alyssa Ross
2020-01-14 15:20:10 +00:00
parent 748c42b4f3
commit 76af9e8438
4 changed files with 0 additions and 9 deletions

View File

@@ -21,8 +21,6 @@ buildPythonPackage rec {
sha256 = "6efc926738a3cd576c2a79725fed9afde92378aa5c6a957e3af010cb019fac9d";
};
outputs = [ "out" "dev" ];
propagatedBuildInputs =
[ botocore
] ++ stdenv.lib.optional (pythonOlder "3") futures;