summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-11-29 18:04:56 +0000
committerPeter Simons <simons@cryp.to>2010-11-29 18:04:56 +0000
commit50a167ba7b55ecd7ec1a5ed70e26592c59b0bcf8 (patch)
treed7517acc8ef899397c9ad57ba428756b0f622395 /pkgs/shells
parent76f6893e6ad19e3e7cdfa3289ff4ff9fc27b50aa (diff)
downloadnixpkgs-50a167ba7b55ecd7ec1a5ed70e26592c59b0bcf8.tar
nixpkgs-50a167ba7b55ecd7ec1a5ed70e26592c59b0bcf8.tar.gz
nixpkgs-50a167ba7b55ecd7ec1a5ed70e26592c59b0bcf8.tar.bz2
nixpkgs-50a167ba7b55ecd7ec1a5ed70e26592c59b0bcf8.tar.lz
nixpkgs-50a167ba7b55ecd7ec1a5ed70e26592c59b0bcf8.tar.xz
nixpkgs-50a167ba7b55ecd7ec1a5ed70e26592c59b0bcf8.tar.zst
nixpkgs-50a167ba7b55ecd7ec1a5ed70e26592c59b0bcf8.zip
pkgs/shells/ipython: added initial version of ipython 0.10.1
Committing on behalf of Cillian de RĂ³iste <cillian.deroiste@gmail.com>.

svn path=/nixpkgs/trunk/; revision=24928
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/ipython/default.nix25
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 00000000000..68064dded3d
--- /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.
+    '';
+  };
+}