Files
Fabian Affolter 1409fec3b6 python3Packages.mkdocs-jupyter: 0.26.1 -> 0.26.3
https://github.com/danielfrg/mkdocs-jupyter/blob/0.26.3/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:36 +02:00

65 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
ipykernel,
jupytext,
mkdocs,
mkdocs-material,
nbconvert,
pygments,
pytestCheckHook,
pytest-cov-stub,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "mkdocs-jupyter";
version = "0.26.3";
pyproject = true;
src = fetchPypi {
pname = "mkdocs_jupyter";
inherit version;
hash = "sha256-4ei9SKG5ZULoTjAo4wZhErrHuU2Vq2n4uRMFyEADyiY=";
};
pythonRelaxDeps = [
"ipykernel"
"nbconvert"
];
build-system = [ hatchling ];
nativeBuildInputs = [
writableTmpDirAsHomeHook
];
dependencies = [
ipykernel
jupytext
mkdocs
mkdocs-material
nbconvert
pygments
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
pythonImportsCheck = [ "mkdocs_jupyter" ];
__darwinAllowLocalNetworking = true;
meta = {
description = "Use Jupyter Notebook in mkdocs";
homepage = "https://github.com/danielfrg/mkdocs-jupyter";
changelog = "https://github.com/danielfrg/mkdocs-jupyter/blob/${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ net-mist ];
};
}