forked from mirrors/nixpkgs
* ipython: simplify.
svn path=/nixpkgs/branches/modular-python/; revision=26565
This commit is contained in:
parent
3c9f4e6e72
commit
cef7e52b5a
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, buildPythonPackage }:
|
||||
{ stdenv, fetchurl, buildPythonPackage, pythonPackages }:
|
||||
|
||||
buildPythonPackage {
|
||||
name = "ipython-0.10.1";
|
||||
|
@ -8,6 +8,8 @@ buildPythonPackage {
|
|||
sha256 = "18zwrg25zn72w4rmcwxzcw11ibgp001fawm2sz189zv86z70fxi2";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pythonPackages.readline ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
|
|
|
@ -1506,19 +1506,7 @@ let
|
|||
|
||||
dash = callPackage ../shells/dash { };
|
||||
|
||||
ipython = callPackage ../shells/ipython {
|
||||
# I did not find any better way of reusing buildPythonPackage+setuptools
|
||||
# for a python with openssl support
|
||||
buildPythonPackage = assert pythonFull.readlineSupport;
|
||||
import ../development/python-modules/generic {
|
||||
inherit makeWrapper lib;
|
||||
python = pythonFull;
|
||||
setuptools = builderDefsPackage (import ../development/python-modules/setuptools) {
|
||||
inherit makeWrapper;
|
||||
python = pythonFull;
|
||||
};
|
||||
};
|
||||
};
|
||||
ipython = callPackage ../shells/ipython { };
|
||||
|
||||
tcsh = callPackage ../shells/tcsh { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue