Unverified Commit da33c0e9 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.jupyter-server-ydoc: 2.2.0 -> 2.2.1 (#489763)

parents ae2e2e6f 810250e7
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -2,7 +2,11 @@
  lib,
  buildPythonPackage,
  fetchPypi,

  # build-system
  hatchling,

  # dependencies
  jsonschema,
  jupyter-events,
  jupyter-server,
@@ -13,15 +17,15 @@
  jupyter-collaboration,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "jupyter-server-ydoc";
  version = "2.2.0";
  version = "2.2.1";
  pyproject = true;

  src = fetchPypi {
    pname = "jupyter_server_ydoc";
    inherit version;
    hash = "sha256-vGw+N3XG9F/hDEgx8gauuA30NI6xHxt6bBwyCqDqw0A=";
    inherit (finalAttrs) version;
    hash = "sha256-aVf2pmqHlMQmVJS7onBnpLCbKTavmRZ5LCDRN6cDvkY=";
  };

  build-system = [ hatchling ];
@@ -49,4 +53,4 @@ buildPythonPackage rec {
    license = lib.licenses.bsd3;
    teams = [ lib.teams.jupyter ];
  };
}
})