python3Packages.spyder-kernels: fix build

Unpin ipython version
This commit is contained in:
Drew Risinger 2022-05-05 15:32:52 -04:00 committed by Jonathan Ringer
parent 7dc40b757e
commit 6293aa7032

View File

@ -18,6 +18,10 @@ buildPythonPackage rec {
pyzmq
];
postPatch = ''
substituteInPlace setup.py --replace "ipython>=7.31.1,<8" "ipython"
'';
# No tests
doCheck = false;