0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00
nixpkgs/pkgs/development/python-modules/jupyter-sphinx/default.nix
2025-01-04 00:19:17 +01:00

64 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
ipykernel,
ipython,
ipywidgets,
nbconvert,
nbformat,
pythonOlder,
sphinx,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "jupyter-sphinx";
version = "0.5.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jupyter";
repo = "jupyter-sphinx";
tag = "v${version}";
hash = "sha256-o/i3WravKZPf7uw2H4SVYfAyaZGf19ZJlkmeHCWcGtE=";
};
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [
ipykernel
ipython
ipywidgets
nbconvert
nbformat
sphinx
];
pythonImportsCheck = [ "jupyter_sphinx" ];
env.JUPYTER_PLATFORM_DIRS = 1;
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# https://github.com/jupyter/jupyter-sphinx/issues/280"
"test_builder_priority"
];
preCheck = ''
export HOME=$TMPDIR
'';
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Jupyter Sphinx Extensions";
homepage = "https://github.com/jupyter/jupyter-sphinx/";
changelog = "https://github.com/jupyter/jupyter-sphinx/releases/tag/v${version}";
license = licenses.bsd3;
};
}