summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/cpython/2.7/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/interpreters/python/cpython/2.7/default.nix')
-rw-r--r--pkgs/development/interpreters/python/cpython/2.7/default.nix11
1 files changed, 1 insertions, 10 deletions
diff --git a/pkgs/development/interpreters/python/cpython/2.7/default.nix b/pkgs/development/interpreters/python/cpython/2.7/default.nix
index c3c0687d2cf..cfcf487b435 100644
--- a/pkgs/development/interpreters/python/cpython/2.7/default.nix
+++ b/pkgs/development/interpreters/python/cpython/2.7/default.nix
@@ -35,7 +35,6 @@
 , stripConfig ? false
 , stripIdlelib ? false
 , stripTests ? false
-, stripLibs ? [ ]
 , pythonAttr ? "python${sourceVersion.major}${sourceVersion.minor}"
 }:
 
@@ -322,15 +321,7 @@ in with passthru; stdenv.mkDerivation ({
     '' + optionalString stripTests ''
       # Strip tests
       rm -R $out/lib/python*/test $out/lib/python*/**/test{,s}
-    '' + (concatStringsSep "\n"
-          (map
-            (lib:
-              ''
-                rm -vR $out/lib/python*/${lib}
-                # libraries in dynload (C libraries) may not exist,
-                # but when they exist they may be prefixed with _
-                rm -vfR $out/lib/python*/lib-dynload/{,_}${lib}
-              '') stripLibs));
+    '';
 
     enableParallelBuilding = true;