summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipython
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-08-12 21:53:09 -0700
committerJonathan Ringer <jonringer117@gmail.com>2020-08-12 21:57:18 -0700
commit91bec616359354dbc108c41cea543145fe18abad (patch)
tree2d6aacd2d0dac3da9c307431b5c86fbee7979917 /pkgs/development/python-modules/ipython
parent6fffd50623b6d6e707bbe3dd83be498a0963946a (diff)
downloadnixpkgs-91bec616359354dbc108c41cea543145fe18abad.tar
nixpkgs-91bec616359354dbc108c41cea543145fe18abad.tar.gz
nixpkgs-91bec616359354dbc108c41cea543145fe18abad.tar.bz2
nixpkgs-91bec616359354dbc108c41cea543145fe18abad.tar.lz
nixpkgs-91bec616359354dbc108c41cea543145fe18abad.tar.xz
nixpkgs-91bec616359354dbc108c41cea543145fe18abad.tar.zst
nixpkgs-91bec616359354dbc108c41cea543145fe18abad.zip
python35: remove
Diffstat (limited to 'pkgs/development/python-modules/ipython')
-rw-r--r--pkgs/development/python-modules/ipython/7.9.nix69
1 files changed, 0 insertions, 69 deletions
diff --git a/pkgs/development/python-modules/ipython/7.9.nix b/pkgs/development/python-modules/ipython/7.9.nix
deleted file mode 100644
index 9953868df5f..00000000000
--- a/pkgs/development/python-modules/ipython/7.9.nix
+++ /dev/null
@@ -1,69 +0,0 @@
-{ lib
-, stdenv
-, buildPythonPackage
-, fetchPypi
-, pythonOlder
-# Build dependencies
-, glibcLocales
-# Test dependencies
-, nose
-, pygments
-# Runtime dependencies
-, jedi
-, decorator
-, pickleshare
-, traitlets
-, prompt_toolkit
-, pexpect
-, appnope
-, backcall
-, fetchpatch
-}:
-
-buildPythonPackage rec {
-  pname = "ipython";
-  version = "7.9.0";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "103jkw18z7fnwdal1mdbijjxi1fndzn31g887lmj7ddpf2r07lyz";
-  };
-
-  prePatch = lib.optionalString stdenv.isDarwin ''
-    substituteInPlace setup.py --replace "'gnureadline'" " "
-  '';
-
-  buildInputs = [ glibcLocales ];
-
-  checkInputs = [ nose pygments ];
-
-  propagatedBuildInputs = [
-    jedi
-    decorator
-    pickleshare
-    traitlets
-    prompt_toolkit
-    pygments
-    pexpect
-    backcall
-  ] ++ lib.optionals stdenv.isDarwin [appnope];
-
-  LC_ALL="en_US.UTF-8";
-
-  doCheck = false; # Circular dependency with ipykernel
-
-  checkPhase = ''
-    nosetests
-  '';
-
-  pythonImportsCheck = [
-    "IPython"
-  ];
-
-  meta = with lib; {
-    description = "IPython: Productive Interactive Computing";
-    homepage = "http://ipython.org/";
-    license = licenses.bsd3;
-    maintainers = with maintainers; [ bjornfor ];
-  };
-}