Merge pull request #71 from aszlig/ipython

ipython: Update to 0.13
This commit is contained in:
Florian Friesdorf 2012-07-25 09:53:09 -07:00
commit 044e43a538

View file

@ -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 ];