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

python312Packages.pycrdt-websocket: 0.15.4 -> 0.15.5 (#398912)

parents 7b16c933 ee2857ae
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -26,14 +26,14 @@

buildPythonPackage rec {
  pname = "pycrdt-websocket";
  version = "0.15.4";
  version = "0.15.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jupyter-server";
    repo = "pycrdt-websocket";
    tag = "v${version}";
    hash = "sha256-yDmi8tb7Tq4ro97mFxbPVLwaHhyYKQbnRLB04u2k5xo=";
    hash = "sha256-piNd85X5YsTAOC9frYQRDyb/DPfzZicIPJ+bEVzgOsU=";
  };

  build-system = [ hatchling ];
+3 −3
Original line number Diff line number Diff line
@@ -162,9 +162,9 @@ dependencies = [

[[package]]
name = "libc"
version = "0.2.171"
version = "0.2.172"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"

[[package]]
name = "lock_api"
@@ -245,7 +245,7 @@ dependencies = [

[[package]]
name = "pycrdt"
version = "0.12.12"
version = "0.12.13"
dependencies = [
 "pyo3",
 "yrs",
+7 −2
Original line number Diff line number Diff line
@@ -19,14 +19,14 @@

buildPythonPackage rec {
  pname = "pycrdt";
  version = "0.12.12";
  version = "0.12.13";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jupyter-server";
    repo = "pycrdt";
    tag = version;
    hash = "sha256-qRr6L27X0g0mvxPECijunpxJilse9fzdKAQZOM0MoDQ=";
    hash = "sha256-EI8LrT5wddmmw3D5C+IhJnViGnSbHWMD3WFp/f1hY7M=";
  };

  postPatch = ''
@@ -53,6 +53,11 @@ buildPythonPackage rec {
    y-py
  ];

  pytestFlagsArray = [
    "-W"
    "ignore::pytest.PytestUnknownMarkWarning" # requires unpackaged pytest-mypy-testing
  ];

  passthru.updateScript = nix-update-script { extraArgs = [ "--generate-lockfile" ]; };

  meta = {