python: get rid of ssl module as it's always builtin

This commit is contained in:
Domen Kožar 2014-10-11 20:23:41 +02:00
parent f310d73ac1
commit 482779e582
4 changed files with 3 additions and 8 deletions

View file

@ -178,8 +178,6 @@ let
deps = [ sqlite ];
};
ssl = null;
tkinter = buildInternalPythonModule {
moduleName = "tkinter";
deps = [ tcl tk x11 ];

View file

@ -192,8 +192,6 @@ let
deps = [ sqlite ];
};
ssl = null;
tkinter = buildInternalPythonModule {
moduleName = "tkinter";
deps = [ tcl tk x11 libX11 ];

View file

@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
doCheck = true;
checkPhase = "python runtests.py";
buildInputs = [ python python.modules.bsddb python.modules.ssl libxslt
buildInputs = [ python python.modules.bsddb libxslt
libxml2 pythonPackages.genshi pythonPackages.lxml makeWrapper ];
installPhase = ''

View file

@ -23,7 +23,6 @@ let
sqlite3 = null;
curses = null;
curses_panel = null;
ssl = null;
crypt = null;
};
@ -1040,7 +1039,7 @@ let
# rev = "refs/tags/0.9.3";
# };
#
# propagatedBuildInputs = [ pythonPackages.argparse modules.ssl ];
# propagatedBuildInputs = [ pythonPackages.argparse ];
#
# doCheck = false;
#
@ -9367,7 +9366,7 @@ let
md5 = "8437607c0cc00c35f658f972516ffb55";
};
propagatedBuildInputs = [ nose modules.ssl ];
propagatedBuildInputs = [ nose ];
meta = {
description = "WSGI request and response object";