depot/third_party/nixpkgs/pkgs/development/python-modules/jupyter-sphinx/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

59 lines
1.1 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";
rev = "refs/tags/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 ];
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/${src.rev}";
license = licenses.bsd3;
};
}