python3.pkgs.nbclient: remove entry point

that is already defined in the jupyter_client package.

Fixes https://github.com/NixOS/nixpkgs/issues/145968
This commit is contained in:
Frederik Rietdijk 2021-11-15 16:25:06 +01:00 committed by Kerstin
parent 11952924f1
commit 4bfbd0af14

View file

@ -18,6 +18,13 @@ buildPythonPackage rec {
checkInputs = [ pytest xmltodict nbconvert ipywidgets ];
propagatedBuildInputs = [ async_generator traitlets nbformat nest-asyncio jupyter-client ];
postFixup = ''
# Remove until fixed by upstream
# https://github.com/jupyter/nbclient/pull/173#issuecomment-968760082
rm $out/bin/.jupyter-run-wrapped
rm $out/bin/jupyter-run
'';
meta = with lib; {
homepage = "https://github.com/jupyter/nbclient";
description = "A client library for executing notebooks";