Commit 62dcb1b7 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent b622edd6
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -23,14 +23,14 @@

buildPythonPackage rec {
  pname = "jupyter-collaboration";
  version = "4.1.0";
  version = "4.1.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jupyterlab";
    repo = "jupyter-collaboration";
    tag = "v${version}";
    hash = "sha256-PnfUWtOXdXYG5qfzAW5kATSQr2sWKDBNiINA8/G4ZX4=";
    hash = "sha256-/NFx76jqByPhzFKYFIcVctJv9+WQeuoUQaqNt+tUs8o=";
  };

  sourceRoot = "${src.name}/projects/jupyter-collaboration";
@@ -64,6 +64,11 @@ buildPythonPackage rec {
    appendToVar enabledTestPaths "$src/tests"
  '';

  disabledTests = [
    # Failed: Timeout (>300.0s) from pytest-timeout
    "test_document_ttl_from_settings"
  ];

  __darwinAllowLocalNetworking = true;

  meta = {