forked from mirrors/nixpkgs
python: get rid of ssl module as it's always builtin
This commit is contained in:
parent
f310d73ac1
commit
482779e582
|
@ -178,8 +178,6 @@ let
|
|||
deps = [ sqlite ];
|
||||
};
|
||||
|
||||
ssl = null;
|
||||
|
||||
tkinter = buildInternalPythonModule {
|
||||
moduleName = "tkinter";
|
||||
deps = [ tcl tk x11 ];
|
||||
|
|
|
@ -192,8 +192,6 @@ let
|
|||
deps = [ sqlite ];
|
||||
};
|
||||
|
||||
ssl = null;
|
||||
|
||||
tkinter = buildInternalPythonModule {
|
||||
moduleName = "tkinter";
|
||||
deps = [ tcl tk x11 libX11 ];
|
||||
|
|
|
@ -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 = ''
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue