python3Packages.ipykernel: remove optional debugpy dependency

This commit is contained in:
Enno Richter 2022-03-26 07:50:57 +01:00
parent 481cc5f7db
commit 9e98422693

View file

@ -4,7 +4,6 @@
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, argcomplete , argcomplete
, debugpy
, ipython , ipython
, jupyter-client , jupyter-client
, tornado , tornado
@ -20,8 +19,13 @@ buildPythonPackage rec {
sha256 = "d82b904fdc2fd8c7b1fbe0fa481c68a11b4cd4c8ef07e6517da1f10cc3114d24"; sha256 = "d82b904fdc2fd8c7b1fbe0fa481c68a11b4cd4c8ef07e6517da1f10cc3114d24";
}; };
# debugpy is optional, see https://github.com/ipython/ipykernel/pull/767
postPatch = ''
substituteInPlace setup.py \
--replace "'debugpy>=1.0.0,<2.0'," ""
'';
propagatedBuildInputs = [ propagatedBuildInputs = [
debugpy
ipython ipython
jupyter-client jupyter-client
tornado tornado