Unverified Commit a6935a17 authored by natsukium's avatar natsukium
Browse files

python311Packages.pycrdt-websocket: 0.12.7 -> 0.13.3

parent 071d98a3
Loading
Loading
Loading
Loading
+13 −7
Original line number Diff line number Diff line
@@ -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
  ];