Skip to content

Commit

Permalink
python312Packages.pycrdt-websocket: 0.14.1 -> 0.14.2 (#338225)
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium committed Sep 1, 2024
2 parents 6f51948 + 8f08255 commit 4a9443e
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions pkgs/development/python-modules/pycrdt-websocket/default.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,33 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
fetchFromGitHub,

# build-system
hatchling,

# dependencies
anyio,
pycrdt,
sqlite-anyio,

# optional-dependencies
channels,

# tests
httpx-ws,
hypercorn,
pycrdt,
pytest-asyncio,
pytestCheckHook,
sqlite-anyio,
trio,
uvicorn,
websockets,
}:

buildPythonPackage rec {
pname = "pycrdt-websocket";
version = "0.14.1";
version = "0.14.2";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -28,7 +36,7 @@ buildPythonPackage rec {
owner = "jupyter-server";
repo = "pycrdt-websocket";
rev = "refs/tags/v${version}";
hash = "sha256-lQ8ZYzFKdVvIEp38WztOWFpJhi4LtA8ODpAFgSZVpU8=";
hash = "sha256-YsAeEUFxCwu7KA2d83J/rb1IlZTQZZecHJAewh+TqWs=";
};

build-system = [ hatchling ];
Expand Down Expand Up @@ -62,11 +70,11 @@ buildPythonPackage rec {

__darwinAllowLocalNetworking = true;

meta = with lib; {
meta = {
description = "WebSocket Connector for pycrdt";
homepage = "https://github.com/jupyter-server/pycrdt-websocket";
changelog = "https://github.com/jupyter-server/pycrdt-websocket/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = teams.jupyter.members;
license = lib.licenses.mit;
maintainers = lib.teams.jupyter.members;
};
}

0 comments on commit 4a9443e

Please sign in to comment.