Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.8 KiB
Nix
68 lines
1.8 KiB
Nix
{
|
|
stdenv,
|
|
sage-with-env,
|
|
python3,
|
|
jupyter-kernel-specs,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = src.version;
|
|
pname = "sagedoc";
|
|
src = sage-with-env.env.lib.src;
|
|
|
|
strictDeps = true;
|
|
|
|
unpackPhase = ''
|
|
export SAGE_DOC_OVERRIDE="$PWD/share/doc/sage"
|
|
export SAGE_DOC_SRC_OVERRIDE="$PWD/docsrc"
|
|
|
|
cp -r "${src}/src/doc" "$SAGE_DOC_SRC_OVERRIDE"
|
|
chmod -R 755 "$SAGE_DOC_SRC_OVERRIDE"
|
|
'';
|
|
|
|
preBuild = ''
|
|
export SAGE_ROOT="${sage-with-env.env.lib.src}"
|
|
export PATH="${sage-with-env}/bin:$PATH"
|
|
export HOME="$TMPDIR/sage_home"
|
|
mkdir -p "$HOME"
|
|
|
|
# needed to link them in the sage docs using intersphinx
|
|
export PPLPY_DOCS=${python3.pkgs.pplpy.doc}/share/doc/pplpy
|
|
|
|
# jupyter-sphinx calls the sagemath jupyter kernel during docbuild
|
|
export JUPYTER_PATH=${jupyter-kernel-specs}
|
|
|
|
# the Makefile tries to guess SAGE_DOC, but in a buggy way (changed in 10.8)
|
|
export SAGE_DOC="$SAGE_DOC_OVERRIDE"
|
|
|
|
cd docsrc
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
installPhase = ''
|
|
cd "$SAGE_DOC_OVERRIDE"
|
|
|
|
mkdir -p "$out/share/doc/sage"
|
|
cp -r html "$out"/share/doc/sage
|
|
|
|
# Replace duplicated files by symlinks (Gentoo)
|
|
cd "$out"/share/doc/sage
|
|
mv html/en/_static{,.tmp}
|
|
for _dir in `find -name _static` ; do
|
|
rm -r $_dir
|
|
ln -rs html/en/_static $_dir
|
|
done
|
|
mv html/en/_static{.tmp,}
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkPhase = ''
|
|
# sagemath_doc_html tests assume sage tests are being run, so we
|
|
# compromise: we run standard tests, but only on files containing
|
|
# relevant tests. as of Sage 9.6, there are only 4 such files.
|
|
grep -PRl "#.*(optional|needs).*sagemath_doc_html" ${src}/src/sage{,_docbuild} | \
|
|
xargs ${sage-with-env}/bin/sage -t --optional=sage,sagemath_doc_html
|
|
'';
|
|
}
|