python311Packages.pycrdt-websocket: 0.12.7 -> 0.13.3

Changelog: https://github.com/jupyter-server/pycrdt-websocket/blob/refs/tags/v0.13.3/CHANGELOG.md
This commit is contained in:
natsukium 2024-05-07 18:59:25 +09:00
parent 071d98a387
commit a6935a17cf
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -3,19 +3,22 @@
, fetchFromGitHub
, pythonOlder
, hatchling
, aiosqlite
, anyio
, channels
, httpx-ws
, hypercorn
, pycrdt
, pytest-asyncio
, pytestCheckHook
, sqlite-anyio
, trio
, uvicorn
, websockets
}:
buildPythonPackage rec {
pname = "pycrdt-websocket";
version = "0.12.7";
version = "0.13.3";
pyproject = true;
disabled = pythonOlder "3.8";
@ -24,20 +27,20 @@ buildPythonPackage rec {
owner = "jupyter-server";
repo = "pycrdt-websocket";
rev = "refs/tags/v${version}";
hash = "sha256-e4VEEudsdtfC2ek8wODxxoFuaOwl4GKS1cX3QeshuD8=";
hash = "sha256-4kxPRPb8XfbQHYmQqnSNfqywUZxQy5b0qWIryLDtP8w=";
};
nativeBuildInputs = [
build-system = [
hatchling
];
propagatedBuildInputs = [
aiosqlite
dependencies = [
anyio
pycrdt
sqlite-anyio
];
passthru.optional-dependencies = {
optional-dependencies = {
django = [
channels
];
@ -48,8 +51,11 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
httpx-ws
hypercorn
pytest-asyncio
pytestCheckHook
trio
uvicorn
websockets
];