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

authored by Gaétan Lepage and committed by GitHub 545f9e16 7b16c933

+12 -7
+2 -2
pkgs/development/python-modules/pycrdt-websocket/default.nix
··· 26 26 27 27 buildPythonPackage rec { 28 28 pname = "pycrdt-websocket"; 29 - version = "0.15.4"; 29 + version = "0.15.5"; 30 30 pyproject = true; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "jupyter-server"; 34 34 repo = "pycrdt-websocket"; 35 35 tag = "v${version}"; 36 - hash = "sha256-yDmi8tb7Tq4ro97mFxbPVLwaHhyYKQbnRLB04u2k5xo="; 36 + hash = "sha256-piNd85X5YsTAOC9frYQRDyb/DPfzZicIPJ+bEVzgOsU="; 37 37 }; 38 38 39 39 build-system = [ hatchling ];
+3 -3
pkgs/development/python-modules/pycrdt/Cargo.lock
··· 162 162 163 163 [[package]] 164 164 name = "libc" 165 - version = "0.2.171" 165 + version = "0.2.172" 166 166 source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" 167 + checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" 168 168 169 169 [[package]] 170 170 name = "lock_api" ··· 245 245 246 246 [[package]] 247 247 name = "pycrdt" 248 - version = "0.12.12" 248 + version = "0.12.13" 249 249 dependencies = [ 250 250 "pyo3", 251 251 "yrs",
+7 -2
pkgs/development/python-modules/pycrdt/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "pycrdt"; 22 - version = "0.12.12"; 22 + version = "0.12.13"; 23 23 pyproject = true; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "jupyter-server"; 27 27 repo = "pycrdt"; 28 28 tag = version; 29 - hash = "sha256-qRr6L27X0g0mvxPECijunpxJilse9fzdKAQZOM0MoDQ="; 29 + hash = "sha256-EI8LrT5wddmmw3D5C+IhJnViGnSbHWMD3WFp/f1hY7M="; 30 30 }; 31 31 32 32 postPatch = '' ··· 51 51 pytestCheckHook 52 52 trio 53 53 y-py 54 + ]; 55 + 56 + pytestFlagsArray = [ 57 + "-W" 58 + "ignore::pytest.PytestUnknownMarkWarning" # requires unpackaged pytest-mypy-testing 54 59 ]; 55 60 56 61 passthru.updateScript = nix-update-script { extraArgs = [ "--generate-lockfile" ]; };