1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchNpmDeps,
# build-system
hatch-deps-selector,
hatch-jupyter-builder,
hatch-nodejs-version,
hatchling,
# nativeBuildInputs
nodejs,
npmHooks,
# dependencies
jupyter-core,
jupyter-server,
ipykernel,
nodeenv,
# tests
versionCheckHook,
}:
buildPythonPackage rec {
pname = "jupyter-book";
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jupyter-book";
repo = "jupyter-book";
tag = "v${version}";
hash = "sha256-Wh3ggKbV0mmcIbpIMsF09UH9ZyVOgpYAx4ppTSUHIKo=";
};
npmDeps = fetchNpmDeps {
inherit src;
hash = "sha256-oNTVzpjDb4bXIpuZcO/6f82UfOVxbkMMluwOKaNM5tE=";
};
build-system = [
hatch-deps-selector
hatch-jupyter-builder
hatch-nodejs-version
hatchling
];
nativeBuildInputs = [
nodejs
npmHooks.npmConfigHook
];
# jupyter-book requires node at runtime
propagatedBuildInputs = [
nodejs
];
dependencies = [
ipykernel
jupyter-core
jupyter-server
nodeenv
];
pythonImportsCheck = [ "jupyter_book" ];
# No python tests
nativeCheckInputs = [
versionCheckHook
];
versionCheckProgramArg = "--version";
meta = {
description = "Build a book with Jupyter Notebooks and Sphinx";
homepage = "https://jupyterbook.org/";
changelog = "https://github.com/jupyter-book/jupyter-book/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.bsd3;
teams = [ lib.teams.jupyter ];
mainProgram = "jupyter-book";
};
}
|