···48 logo64 = "${sage-src}/src/doc/common/themes/sage/static/sageicon.png";
49 };
5000000051 three = callPackage ./threejs-sage.nix { };
5253 # A bash script setting various environment variables to tell sage where
···73 # The documentation for sage, building it takes a lot of ram.
74 sagedoc = callPackage ./sagedoc.nix {
75 inherit sage-with-env;
76- inherit python3 maxima;
77 };
7879 # sagelib with added wrappers and a dependency on sage-tests to make sure thet tests were run.
···167in
168# A wrapper around sage that makes sure sage finds its docs (if they were build).
169callPackage ./sage.nix {
170- inherit sage-tests sage-with-env sagedoc jupyter-kernel-definition;
171 inherit withDoc requireSageTests;
172}
···48 logo64 = "${sage-src}/src/doc/common/themes/sage/static/sageicon.png";
49 };
5051+ jupyter-kernel-specs = pkgs.jupyter-kernel.create {
52+ definitions = pkgs.jupyter-kernel.default // {
53+ sagemath = jupyter-kernel-definition;
54+ };
55+ };
56+57 three = callPackage ./threejs-sage.nix { };
5859 # A bash script setting various environment variables to tell sage where
···79 # The documentation for sage, building it takes a lot of ram.
80 sagedoc = callPackage ./sagedoc.nix {
81 inherit sage-with-env;
82+ inherit python3 maxima jupyter-kernel-specs;
83 };
8485 # sagelib with added wrappers and a dependency on sage-tests to make sure thet tests were run.
···173in
174# A wrapper around sage that makes sure sage finds its docs (if they were build).
175callPackage ./sage.nix {
176+ inherit sage-tests sage-with-env sagedoc jupyter-kernel-specs;
177 inherit withDoc requireSageTests;
178}