summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/science/math/sage/sagedoc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/science/math/sage/sagedoc.nix')
-rw-r--r--pkgs/applications/science/math/sage/sagedoc.nix29
1 files changed, 1 insertions, 28 deletions
diff --git a/pkgs/applications/science/math/sage/sagedoc.nix b/pkgs/applications/science/math/sage/sagedoc.nix
index 67d754caff3c..650b6d3b141a 100644
--- a/pkgs/applications/science/math/sage/sagedoc.nix
+++ b/pkgs/applications/science/math/sage/sagedoc.nix
@@ -2,10 +2,6 @@
, sage-with-env
, python3
, jupyter-kernel-specs
-, maxima
-, tachyon
-, jmol
-, cddlib
}:
stdenv.mkDerivation rec {
@@ -13,30 +9,7 @@ stdenv.mkDerivation rec {
pname = "sagedoc";
src = sage-with-env.env.lib.src;
-
- # Building the documentation has many dependencies, because all documented
- # modules are imported and because matplotlib is used to produce plots.
- buildInputs = [
- sage-with-env.env.lib
- python3
- maxima
- tachyon
- jmol
- cddlib
- ] ++ (with python3.pkgs; [
- sage-docbuild
- psutil
- future
- sphinx
- scipy
- sympy
- matplotlib
- pillow
- networkx
- ipykernel
- ipywidgets
- jupyter-client
- ]);
+ strictDeps = true;
unpackPhase = ''
export SAGE_DOC_OVERRIDE="$PWD/share/doc/sage"