about summary refs log tree commit diff
path: root/pkgs/shells/ipython
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2012-07-25 18:03:09 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-07-25 18:04:52 +0200
commit003ea37724749c813d500f7e0145040119fdd04a (patch)
tree3514bf6fb81ec93621bf571751d4f664e3ce2d4d /pkgs/shells/ipython
parentce77a5ceec8d4f241bec049a3af9d9626b74b6dc (diff)
downloadnixlib-003ea37724749c813d500f7e0145040119fdd04a.tar
nixlib-003ea37724749c813d500f7e0145040119fdd04a.tar.gz
nixlib-003ea37724749c813d500f7e0145040119fdd04a.tar.bz2
nixlib-003ea37724749c813d500f7e0145040119fdd04a.tar.lz
nixlib-003ea37724749c813d500f7e0145040119fdd04a.tar.xz
nixlib-003ea37724749c813d500f7e0145040119fdd04a.tar.zst
nixlib-003ea37724749c813d500f7e0145040119fdd04a.zip
ipython: Update to 0.13.
Diffstat (limited to 'pkgs/shells/ipython')
-rw-r--r--pkgs/shells/ipython/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/ipython/default.nix b/pkgs/shells/ipython/default.nix
index 8e430df52904..a64c20520561 100644
--- a/pkgs/shells/ipython/default.nix
+++ b/pkgs/shells/ipython/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, buildPythonPackage, pythonPackages }:
 
 buildPythonPackage rec {
-  name = "ipython-0.11";
+  name = "ipython-0.13";
   namePrefix = "";
 
   src = fetchurl {
     url = "http://pypi.python.org/packages/source/i/ipython/${name}.tar.gz";
-    md5 = "efc899e752a4a4a67a99575cea1719ef";
+    sha256 = "1m4m0zf3llnicfgrbnl2h08p3662px7v2pzbhq4fq24vnyz6x5w2";
   };
 
   propagatedBuildInputs = [ pythonPackages.readline pythonPackages.sqlite3 ];