diff options
author | Eelco Dolstra | 2010-11-30 11:39:53 +0000 |
---|---|---|
committer | Eelco Dolstra | 2010-11-30 11:39:53 +0000 |
commit | 86d51032cced543cbecd89ac78e770ed1b152a31 (patch) | |
tree | 4e8a326c3dc95c30fd7cd1f697f77f340951c0da /pkgs/shells/ipython/default.nix | |
parent | 009bfb702d1c018fc32b10bab07d82ded62a1f0b (diff) | |
parent | d71ad68d43723f88c25b13c07255d4929827faaa (diff) |
* Sync. backups/cve-2010-3856@34170
svn path=/nixpkgs/branches/cve-2010-3856/; revision=24936
Diffstat (limited to 'pkgs/shells/ipython/default.nix')
-rw-r--r-- | pkgs/shells/ipython/default.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/shells/ipython/default.nix b/pkgs/shells/ipython/default.nix new file mode 100644 index 000000000000..68064dded3d9 --- /dev/null +++ b/pkgs/shells/ipython/default.nix @@ -0,0 +1,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. + ''; + }; +} |