summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorPascal Wittmann <PascalWittmann@gmx.net>2015-09-08 17:43:21 +0200
committerPascal Wittmann <PascalWittmann@gmx.net>2015-09-08 17:43:21 +0200
commitc11dc40d09682405d4ae4ca9a59d7c80c0c0e706 (patch)
tree732020d25a75e830b1b9ba7c13ff0a913d499827 /pkgs/shells
parent7d12a0a709ea57e0d1f768755ad8b05b42605162 (diff)
parentfb5f7832d99477d0fdccfd19f57982f0ae235cf7 (diff)
downloadnixpkgs-c11dc40d09682405d4ae4ca9a59d7c80c0c0e706.tar
nixpkgs-c11dc40d09682405d4ae4ca9a59d7c80c0c0e706.tar.gz
nixpkgs-c11dc40d09682405d4ae4ca9a59d7c80c0c0e706.tar.bz2
nixpkgs-c11dc40d09682405d4ae4ca9a59d7c80c0c0e706.tar.lz
nixpkgs-c11dc40d09682405d4ae4ca9a59d7c80c0c0e706.tar.xz
nixpkgs-c11dc40d09682405d4ae4ca9a59d7c80c0c0e706.tar.zst
nixpkgs-c11dc40d09682405d4ae4ca9a59d7c80c0c0e706.zip
Merge pull request #9254 from FRidh/jupyter
ipython: 3.2 -> 4.0
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/ipython/default.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/pkgs/shells/ipython/default.nix b/pkgs/shells/ipython/default.nix
deleted file mode 100644
index 0283c48add9..00000000000
--- a/pkgs/shells/ipython/default.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{ stdenv, fetchurl, buildPythonPackage, pythonPackages, pyqt4 ? null
-, notebookSupport ? true   # ipython notebook
-, qtconsoleSupport ? true  # ipython qtconsole
-, pylabSupport ? true      # '%pylab' magic (backend: agg - no gui, just file)
-, pylabQtSupport ? true    # '%pylab qt' (backend: Qt4Agg - plot to window)
-}:
-
-# ipython qtconsole works with both pyside and pyqt4. But ipython --pylab=qt
-# only works with pyqt4 (at least this is true for ipython 0.13.1). So just use
-# pyqt4 for both.
-
-assert qtconsoleSupport == true -> pyqt4 != null;
-assert pylabQtSupport == true -> pyqt4 != null;
-
-buildPythonPackage rec {
-  name = "ipython-${version}";
-  version = "3.2.1";
-  namePrefix = "";
-
-  src = fetchurl {
-    url = "https://pypi.python.org/packages/source/i/ipython/${name}.tar.gz";
-    sha256 = "c913adee7ae5b338055274c51a7d2b3cea468b5b316046fa520cd8a434b09177";
-  };
-
-  propagatedBuildInputs = [
-    pythonPackages.readline
-    pythonPackages.sqlite3  # required for history support
-  ] ++ stdenv.lib.optionals notebookSupport [
-    pythonPackages.tornado
-    pythonPackages.pyzmq
-    pythonPackages.jinja2
-    pythonPackages.jsonschema
-  ] ++ stdenv.lib.optionals qtconsoleSupport [
-    pythonPackages.pygments
-    pythonPackages.pyzmq
-    pyqt4
-  ] ++ stdenv.lib.optionals pylabSupport [
-    pythonPackages.matplotlib
-  ] ++ stdenv.lib.optionals pylabQtSupport [
-    pythonPackages.matplotlib
-    pyqt4
-  ];
-
-  doCheck = false;
-
-  meta = {
-    homepage = http://ipython.scipy.org/;
-    description = "An interactive computing environment for Python";
-    license = stdenv.lib.licenses.bsd3;
-    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.
-    '';
-    maintainers = with stdenv.lib.maintainers; [ bjornfor jgeerds ];
-  };
-}