summaryrefslogtreecommitdiffstats
path: root/pkgs/shells
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-10-18 08:47:36 +0000
committerPeter Simons <simons@cryp.to>2011-10-18 08:47:36 +0000
commit7edf0e8eafcf8ba67840a32362a0ba6c41f04c71 (patch)
tree2add995148919cf3627de5ac9795586ac6c75f01 /pkgs/shells
parent383baf8794ebbdb81dff24b7d6f314e046f5d0cd (diff)
parent491c6e43b182a189f27455dcc17e64ca7b7dbd7d (diff)
synchronize with trunk
svn path=/nixpkgs/branches/stdenv-updates/; revision=29870
Diffstat (limited to 'pkgs/shells')
-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;