summary refs log tree commit diff
path: root/pkgs/shells/ipython/default.nix
blob: 68064dded3d9f8ff9e8d745050d841fcfd5b0e0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, buildPythonPackage }:

buildPythonPackage {
  name = "ipython-0.10.1";

  src = fetchurl {
    url = "http://ipython.scipy.org/dist/0.10.1/ipython-0.10.1.tar.gz";
    sha256 = "18zwrg25zn72w4rmcwxzcw11ibgp001fawm2sz189zv86z70fxi2";
  };

  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.
    '';
  };
}