summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipython
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-26 13:43:28 -0700
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-27 16:26:56 +0100
commit0ccf10b955910dd511208720f3bbf49a2ffe9fbb (patch)
treeefb9fdbfa24ab1951981e9604fe443358ebca0aa /pkgs/development/python-modules/ipython
parentd411e3d0c241ca2e64341a8ac4358d8ce2fb8a73 (diff)
downloadnixpkgs-0ccf10b955910dd511208720f3bbf49a2ffe9fbb.tar
nixpkgs-0ccf10b955910dd511208720f3bbf49a2ffe9fbb.tar.gz
nixpkgs-0ccf10b955910dd511208720f3bbf49a2ffe9fbb.tar.bz2
nixpkgs-0ccf10b955910dd511208720f3bbf49a2ffe9fbb.tar.lz
nixpkgs-0ccf10b955910dd511208720f3bbf49a2ffe9fbb.tar.xz
nixpkgs-0ccf10b955910dd511208720f3bbf49a2ffe9fbb.tar.zst
nixpkgs-0ccf10b955910dd511208720f3bbf49a2ffe9fbb.zip
pythonPackages.ipython: remove python2 frozen package
promptoolkit no longer supports python2, instead of freezeing
the package, decided to remove python2 support.
Diffstat (limited to 'pkgs/development/python-modules/ipython')
-rw-r--r--pkgs/development/python-modules/ipython/5.nix62
1 files changed, 0 insertions, 62 deletions
diff --git a/pkgs/development/python-modules/ipython/5.nix b/pkgs/development/python-modules/ipython/5.nix
deleted file mode 100644
index 15e7d00bcec..00000000000
--- a/pkgs/development/python-modules/ipython/5.nix
+++ /dev/null
@@ -1,62 +0,0 @@
-{ lib
-, stdenv
-, buildPythonPackage
-, fetchPypi
-# Build dependencies
-, glibcLocales
-# Test dependencies
-, nose
-, pygments
-, testpath
-, isPy27
-, mock
-# Runtime dependencies
-, backports_shutil_get_terminal_size
-, decorator
-, pathlib2
-, pickleshare
-, requests
-, simplegeneric
-, traitlets
-, prompt_toolkit
-, pexpect
-, appnope
-}:
-
-buildPythonPackage rec {
-  pname = "ipython";
-  version = "5.8.0";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "4bac649857611baaaf76bc82c173aa542f7486446c335fe1a6c05d0d491c8906";
-  };
-
-  prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
-    substituteInPlace setup.py --replace "'gnureadline'" " "
-  '';
-
-  buildInputs = [ glibcLocales ];
-
-  checkInputs = [ nose pygments testpath ] ++ lib.optional isPy27 mock;
-
-  propagatedBuildInputs = [
-    backports_shutil_get_terminal_size decorator pickleshare prompt_toolkit
-    simplegeneric traitlets requests pathlib2 pexpect
-  ] ++ lib.optionals stdenv.isDarwin [ appnope ];
-
-  LC_ALL="en_US.UTF-8";
-
-  doCheck = false; # Circular dependency with ipykernel
-
-  checkPhase = ''
-    nosetests
-  '';
-
-  meta = {
-    description = "IPython: Productive Interactive Computing";
-    homepage = http://ipython.org/;
-    license = lib.licenses.bsd3;
-    maintainers = with lib.maintainers; [ bjornfor orivej lnl7 ];
-  };
-}