Unverified Commit c915fe39 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

Merge pull request #221460 from doronbehar/pkg/jupyter

python3.pkgs.jupyter{,lab}-lsp: updates
parents b5cf5068 a1b55cd4
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -7,11 +7,11 @@

buildPythonPackage rec {
  pname = "jupyter-lsp";
  version = "1.5.1";
  version = "2.0.0";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-dRq9NUE76ZpDMfNZewk0Gtx1VYntMgkawvaG2z1hJn4=";
    hash = "sha256-89n1mdSOCTpLq/vawZTDAzLmJIzkoD1z+nEviMd55Rk=";
  };

  propagatedBuildInputs = [
@@ -23,10 +23,10 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Multi-Language Server WebSocket proxy for your Jupyter notebook or lab server";
    homepage = "https://pypi.org/project/jupyter-lsp";
    homepage = "https://jupyterlab-lsp.readthedocs.io/en/latest/";
    license = licenses.bsd3;
    platforms = platforms.all;
    maintainers = with maintainers; [ doronbehar ];
    maintainers = with maintainers; [ ];
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -7,11 +7,11 @@

buildPythonPackage rec {
  pname = "jupyterlab-lsp";
  version = "3.10.2";
  version = "4.0.0";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-VZrUaS+X9C3WufCzMKuScD8CuORbuvbpz1mJiolyIqA=";
    hash = "sha256-Rh5rX48HglIGy7Qg4lvmP3bVVCB3ibWnenCHMui5pJE=";
  };

  propagatedBuildInputs = [
@@ -27,6 +27,6 @@ buildPythonPackage rec {
    homepage = "https://github.com/jupyter-lsp/jupyterlab-lsp";
    license = licenses.bsd3;
    platforms = platforms.all;
    maintainers = with maintainers; [ doronbehar ];
    maintainers = with maintainers; [ ];
  };
}