2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
68 lines
1.3 KiB
Nix
68 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, hatchling
|
|
, ipykernel
|
|
, jupytext
|
|
, mkdocs
|
|
, mkdocs-material
|
|
, nbconvert
|
|
, pygments
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mkdocs-jupyter";
|
|
version = "0.24.6";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "mkdocs_jupyter";
|
|
inherit version;
|
|
hash = "sha256-ify+ipUjhk1UFt4aYHEWQLa8KXInnSrfRu0ndsLZ/3w=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "/--cov/d" pyproject.toml
|
|
substituteInPlace src/mkdocs_jupyter/tests/test_base_usage.py \
|
|
--replace "[\"mkdocs\"," "[\"${mkdocs.out}/bin/mkdocs\","
|
|
'';
|
|
|
|
pythonRelaxDeps = [
|
|
"nbconvert"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
ipykernel
|
|
jupytext
|
|
mkdocs
|
|
mkdocs-material
|
|
nbconvert
|
|
pygments
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"mkdocs_jupyter"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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 = licenses.asl20;
|
|
maintainers = with maintainers; [ net-mist ];
|
|
};
|
|
}
|