Files
Fabian Affolter 47e041d7ef python3Packages.jupyter-docprovider: 3.0.0 -> 3.0.1
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:30 +02:00

47 lines
970 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
# build-system
hatchling,
hatch-jupyter-builder,
jupyter-builder,
# passthru
jupyter-collaboration,
}:
buildPythonPackage (finalAttrs: {
pname = "jupyter-docprovider";
version = "3.0.1";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "jupyter_docprovider";
inherit (finalAttrs) version;
hash = "sha256-GvXoDge9Mllisrrmya/WtNWPob9AMd/f/AYlwNbuh/A=";
};
build-system = [
hatchling
hatch-jupyter-builder
jupyter-builder
];
pythonImportsCheck = [ "jupyter_docprovider" ];
# no tests
doCheck = false;
passthru.tests = jupyter-collaboration;
meta = {
description = "JupyterLab/Jupyter Notebook 7+ extension integrating collaborative shared models";
homepage = "https://github.com/jupyterlab/jupyter-collaboration/tree/main/projects/jupyter-docprovider";
license = lib.licenses.bsd3;
teams = [ lib.teams.jupyter ];
};
})