···4848 logo64 = "${sage-src}/src/doc/common/themes/sage/static/sageicon.png";
4949 };
50505151+ jupyter-kernel-specs = pkgs.jupyter-kernel.create {
5252+ definitions = pkgs.jupyter-kernel.default // {
5353+ sagemath = jupyter-kernel-definition;
5454+ };
5555+ };
5656+5157 three = callPackage ./threejs-sage.nix { };
52585359 # A bash script setting various environment variables to tell sage where
···7379 # The documentation for sage, building it takes a lot of ram.
7480 sagedoc = callPackage ./sagedoc.nix {
7581 inherit sage-with-env;
7676- inherit python3 maxima;
8282+ inherit python3 maxima jupyter-kernel-specs;
7783 };
78847985 # sagelib with added wrappers and a dependency on sage-tests to make sure thet tests were run.
···167173in
168174# A wrapper around sage that makes sure sage finds its docs (if they were build).
169175callPackage ./sage.nix {
170170- inherit sage-tests sage-with-env sagedoc jupyter-kernel-definition;
176176+ inherit sage-tests sage-with-env sagedoc jupyter-kernel-specs;
171177 inherit withDoc requireSageTests;
172178}