depot/third_party/nixpkgs/pkgs/development/python-modules/jupyter-collaboration/default.nix

51 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
# build-system
hatchling,
# dependencies
jupyter-collaboration-ui,
jupyter-docprovider,
jupyter-server-ydoc,
# tests
callPackage,
}:
buildPythonPackage rec {
pname = "jupyter-collaboration";
version = "3.0.0";
pyproject = true;
src = fetchPypi {
pname = "jupyter_collaboration";
inherit version;
hash = "sha256-eewAsh/EI8DV4FNWgjEhT61RUbaYE6suOAny4bf1CCw=";
};
build-system = [ hatchling ];
dependencies = [
jupyter-collaboration-ui
jupyter-docprovider
jupyter-server-ydoc
];
pythonImportsCheck = [ "jupyter_collaboration" ];
# no tests
doCheck = false;
passthru.tests = callPackage ./test.nix { };
meta = {
description = "JupyterLab Extension enabling Real-Time Collaboration";
homepage = "https://github.com/jupyterlab/jupyter_collaboration";
changelog = "https://github.com/jupyterlab/jupyter_collaboration/blob/v${version}/CHANGELOG.md";
license = lib.licenses.bsd3;
maintainers = lib.teams.jupyter.members;
};
}