about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/cpython
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-07-01 20:57:13 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-07-01 21:00:26 +0100
commitcb2862e214dc9245a61bc4d3242f895ac969ffa5 (patch)
tree4d0f9cf8ffa5349412157507fd09f11d6fed4910 /pkgs/development/interpreters/python/cpython
parent49f6ea40b0a8375a9f183e465f5475f63d4c1421 (diff)
downloadnixlib-cb2862e214dc9245a61bc4d3242f895ac969ffa5.tar
nixlib-cb2862e214dc9245a61bc4d3242f895ac969ffa5.tar.gz
nixlib-cb2862e214dc9245a61bc4d3242f895ac969ffa5.tar.bz2
nixlib-cb2862e214dc9245a61bc4d3242f895ac969ffa5.tar.lz
nixlib-cb2862e214dc9245a61bc4d3242f895ac969ffa5.tar.xz
nixlib-cb2862e214dc9245a61bc4d3242f895ac969ffa5.tar.zst
nixlib-cb2862e214dc9245a61bc4d3242f895ac969ffa5.zip
python37: fix openssl detection
Before python37 was build without ssl support.
Tested with `python  -c 'import ssl'`
Diffstat (limited to 'pkgs/development/interpreters/python/cpython')
-rw-r--r--pkgs/development/interpreters/python/cpython/3.7/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/python/cpython/3.7/default.nix b/pkgs/development/interpreters/python/cpython/3.7/default.nix
index 9cc0377f925f..410d07ebc61c 100644
--- a/pkgs/development/interpreters/python/cpython/3.7/default.nix
+++ b/pkgs/development/interpreters/python/cpython/3.7/default.nix
@@ -80,6 +80,7 @@ in stdenv.mkDerivation {
     "--without-ensurepip"
     "--with-system-expat"
     "--with-system-ffi"
+    "--with-openssl=${openssl.dev}"
   ];
 
   preConfigure = ''