summary refs log tree commit diff
path: root/pkgs/development/python-modules/ipython
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-01-13 23:03:57 -0800
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-23 01:09:29 +0100
commit7adbab7fb28810f94010c9104d00da3ef468881c (patch)
tree00018d24b4d441d6e915c70b65c9cdd0b23ef97c /pkgs/development/python-modules/ipython
parent7e4264ec435eb1453efa05912082bf128952b967 (diff)
downloadnixpkgs-7adbab7fb28810f94010c9104d00da3ef468881c.tar
nixpkgs-7adbab7fb28810f94010c9104d00da3ef468881c.tar.gz
nixpkgs-7adbab7fb28810f94010c9104d00da3ef468881c.tar.bz2
nixpkgs-7adbab7fb28810f94010c9104d00da3ef468881c.tar.lz
nixpkgs-7adbab7fb28810f94010c9104d00da3ef468881c.tar.xz
nixpkgs-7adbab7fb28810f94010c9104d00da3ef468881c.tar.zst
nixpkgs-7adbab7fb28810f94010c9104d00da3ef468881c.zip
python3Packages.ipython: fix deps
Diffstat (limited to 'pkgs/development/python-modules/ipython')
-rw-r--r--pkgs/development/python-modules/ipython/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ipython/default.nix b/pkgs/development/python-modules/ipython/default.nix
index 3ead79dbaf1..d1f6f4f3c30 100644
--- a/pkgs/development/python-modules/ipython/default.nix
+++ b/pkgs/development/python-modules/ipython/default.nix
@@ -9,6 +9,7 @@
 , nose
 , pygments
 # Runtime dependencies
+, black
 , jedi
 , decorator
 , matplotlib-inline
@@ -18,6 +19,7 @@
 , pexpect
 , appnope
 , backcall
+, stack-data
 }:
 
 buildPythonPackage rec {
@@ -39,10 +41,12 @@ buildPythonPackage rec {
   checkInputs = [ nose pygments ];
 
   propagatedBuildInputs = [
+    black
     jedi
     decorator
     matplotlib-inline
     pickleshare
+    stack-data
     traitlets
     prompt-toolkit
     pygments