summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-02-20 18:59:43 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-02-20 18:59:43 +0000
commit45fed14272a77311b7ee7ab89d52629bfa084765 (patch)
treeaed856f5a10ff3bd7cd3cef380974b18ef24d604 /pkgs/development/interpreters
parent95cbf4ed555669bea9f0ea37678665db452c2cd8 (diff)
downloadnixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.gz
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.bz2
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.lz
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.xz
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.tar.zst
nixpkgs-45fed14272a77311b7ee7ab89d52629bfa084765.zip
* Revert r32435. We'll be doing a stdenv merge in a few days, so
  let's put it in there rather than having the Nth near-complete
  rebuild of the trunk in a few days.

svn path=/nixpkgs/trunk/; revision=32436
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/python/2.7/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix
index 635d50dc5b3..1c8ae0cf171 100644
--- a/pkgs/development/interpreters/python/2.7/default.nix
+++ b/pkgs/development/interpreters/python/2.7/default.nix
@@ -38,7 +38,7 @@ let
 
   buildInputs =
     optional (stdenv ? gcc && stdenv.gcc.libc != null) stdenv.gcc.libc ++
-    [ bzip2 openssl ]
+    [ bzip2 ]
     ++ optional zlibSupport zlib
     ++ optionals stdenv.isDarwin [ darwinArchUtility darwinSwVersUtility ];
 
@@ -172,6 +172,11 @@ let
       deps = [ sqlite ];
     };
 
+    ssl = buildInternalPythonModule {
+      moduleName = "ssl";
+      deps = [ openssl ];
+    };
+
     tkinter = buildInternalPythonModule {
       moduleName = "tkinter";
       deps = [ tcl tk x11 ];