Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python312Packages.pycrdt: 0.10.9 -> 0.12.2 #370369

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions pkgs/development/python-modules/pycrdt-websocket/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,22 @@

buildPythonPackage rec {
pname = "pycrdt-websocket";
version = "0.15.1";
version = "0.15.3";
pyproject = true;

src = fetchFromGitHub {
owner = "jupyter-server";
repo = "pycrdt-websocket";
tag = "v${version}";
hash = "sha256-O0GRk81at8bgv+/4au8A55dZK2A28+ghy3sitAAZQBI=";
hash = "sha256-VK4nSsxF/FbCnyS1RM/JHCPS0Omj4rvdwjzLNDq2hjk=";
};

build-system = [ hatchling ];

pythonRelaxDeps = [
"pycrdt"
];
Comment on lines +41 to +43
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unless other packages require a newer version of pycrdt, I don't see the need to upgrade by relaxing the restrictions.
It may be a meaningless upper bound, but these two libraries are tied together and I would like to follow them upstream as much as possible.


dependencies = [
anyio
pycrdt
Expand Down Expand Up @@ -70,7 +74,7 @@ buildPythonPackage rec {
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";
changelog = "https://github.com/jupyter-server/pycrdt-websocket/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = lib.teams.jupyter.members;
};
Expand Down
44 changes: 22 additions & 22 deletions pkgs/development/python-modules/pycrdt/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pycrdt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@

buildPythonPackage rec {
pname = "pycrdt";
version = "0.10.9";
version = "0.12.2";
pyproject = true;

src = fetchFromGitHub {
owner = "jupyter-server";
repo = "pycrdt";
tag = version;
hash = "sha256-G0hmjSm1AP7CbnhT56Pxb/vVOQVGxSS4W4/CMGAeP7c=";
hash = "sha256-eMAj1IVUa6wfgVVcepO7VnO0eCcTc3TaRZr+uXsXeig=";
};

postPatch = ''
Expand Down