summary refs log tree commit diff
path: root/pkgs/shells/ipython
diff options
context:
space:
mode:
authorCillian de Roiste <cillian.deroiste@gmail.com>2011-10-16 12:46:47 +0000
committerCillian de Roiste <cillian.deroiste@gmail.com>2011-10-16 12:46:47 +0000
commit13e76321f08bd6c5e3ba31ab16939e74fd8e040e (patch)
tree6fafd2078633547e4bc7ebfa3ba517cb6446eb54 /pkgs/shells/ipython
parent549bd62221bd51bf9515ed169e1d651dd9bf0031 (diff)
downloadnixlib-13e76321f08bd6c5e3ba31ab16939e74fd8e040e.tar
nixlib-13e76321f08bd6c5e3ba31ab16939e74fd8e040e.tar.gz
nixlib-13e76321f08bd6c5e3ba31ab16939e74fd8e040e.tar.bz2
nixlib-13e76321f08bd6c5e3ba31ab16939e74fd8e040e.tar.lz
nixlib-13e76321f08bd6c5e3ba31ab16939e74fd8e040e.tar.xz
nixlib-13e76321f08bd6c5e3ba31ab16939e74fd8e040e.tar.zst
nixlib-13e76321f08bd6c5e3ba31ab16939e74fd8e040e.zip
Updating IPython (python shell) to 0.11
svn path=/nixpkgs/trunk/; revision=29858
Diffstat (limited to 'pkgs/shells/ipython')
-rw-r--r--pkgs/shells/ipython/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/shells/ipython/default.nix b/pkgs/shells/ipython/default.nix
index 2c029b764b04..8e430df52904 100644
--- a/pkgs/shells/ipython/default.nix
+++ b/pkgs/shells/ipython/default.nix
@@ -1,15 +1,15 @@
 { stdenv, fetchurl, buildPythonPackage, pythonPackages }:
 
-buildPythonPackage {
-  name = "ipython-0.10.1";
+buildPythonPackage rec {
+  name = "ipython-0.11";
   namePrefix = "";
 
   src = fetchurl {
-    url = "http://ipython.scipy.org/dist/0.10.1/ipython-0.10.1.tar.gz";
-    sha256 = "18zwrg25zn72w4rmcwxzcw11ibgp001fawm2sz189zv86z70fxi2";
+    url = "http://pypi.python.org/packages/source/i/ipython/${name}.tar.gz";
+    md5 = "efc899e752a4a4a67a99575cea1719ef";
   };
 
-  propagatedBuildInputs = [ pythonPackages.readline ];
+  propagatedBuildInputs = [ pythonPackages.readline pythonPackages.sqlite3 ];
 
   doCheck = false;