2011-03-28 14:40:53 +02:00
|
|
|
{ stdenv, fetchurl, buildPythonPackage, pythonPackages }:
|
2010-11-29 19:04:56 +01:00
|
|
|
|
2011-10-16 14:46:47 +02:00
|
|
|
buildPythonPackage rec {
|
2012-07-25 18:03:09 +02:00
|
|
|
name = "ipython-0.13";
|
2011-03-28 15:13:15 +02:00
|
|
|
namePrefix = "";
|
2010-11-29 19:04:56 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-10-16 14:46:47 +02:00
|
|
|
url = "http://pypi.python.org/packages/source/i/ipython/${name}.tar.gz";
|
2012-07-25 18:03:09 +02:00
|
|
|
sha256 = "1m4m0zf3llnicfgrbnl2h08p3662px7v2pzbhq4fq24vnyz6x5w2";
|
2010-11-29 19:04:56 +01:00
|
|
|
};
|
|
|
|
|
2013-03-23 00:38:18 +01:00
|
|
|
propagatedBuildInputs = [ pythonPackages.readline pythonPackages.sqlite3 pythonPackages.tornado pythonPackages.pyzmq ];
|
2011-03-28 14:40:53 +02:00
|
|
|
|
2010-11-29 19:04:56 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://ipython.scipy.org/;
|
|
|
|
description = "An interactive computing environment for Python";
|
|
|
|
license = "BSD";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The goal of IPython is to create a comprehensive environment
|
|
|
|
for interactive and exploratory computing. It consists of an
|
|
|
|
enhanced interactive Python shell and an architecture for
|
|
|
|
interactive parallel computing.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|