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:
parent
11952924f1
commit
4bfbd0af14
1 changed files with 7 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue