about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipython
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-05-07 12:55:45 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-05-07 12:56:09 +0200
commitef4442e827af928a3fd394cb0731b554a31e8d5b (patch)
tree4aa8f846f6a3074b4dc99fb16dd14bdc78ac3dd6 /pkgs/development/python-modules/ipython
parent024ddb32a7137c81c0e86ba59876c0cf4d5425e7 (diff)
downloadnixlib-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar
nixlib-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.gz
nixlib-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.bz2
nixlib-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.lz
nixlib-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.xz
nixlib-ef4442e827af928a3fd394cb0731b554a31e8d5b.tar.zst
nixlib-ef4442e827af928a3fd394cb0731b554a31e8d5b.zip
Python: replace requests2 with requests tree-wide
See f63eb5857352705665411130d4f1638d55dd8c58

The `requests2` attribute now throws an error informing that `requests`
should be used instead.
Diffstat (limited to 'pkgs/development/python-modules/ipython')
-rw-r--r--pkgs/development/python-modules/ipython/5.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ipython/5.nix b/pkgs/development/python-modules/ipython/5.nix
index 011c86652902..b25039cc71e8 100644
--- a/pkgs/development/python-modules/ipython/5.nix
+++ b/pkgs/development/python-modules/ipython/5.nix
@@ -17,7 +17,7 @@
 , decorator
 , pathlib2
 , pickleshare
-, requests2
+, requests
 , simplegeneric
 , traitlets
 , prompt_toolkit
@@ -45,7 +45,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [
     backports_shutil_get_terminal_size decorator pickleshare prompt_toolkit
-    simplegeneric traitlets requests2 pathlib2 pexpect
+    simplegeneric traitlets requests pathlib2 pexpect
   ] ++ lib.optionals stdenv.isDarwin [ appnope ];
 
   LC_ALL="en_US.UTF-8";