about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-09-16 06:36:31 +0300
committerGitHub <noreply@github.com>2023-09-16 06:36:31 +0300
commiteac4faced1588170b1e709acb6e9ab1fa11dae24 (patch)
treed8fb69bc7de90bfe650162d90181cf29b5597a8f /pkgs/applications/science
parent512573a462de064794932bdc36f9d40b57158d4d (diff)
parentcf3d29d63f7a0b372f0bc7ae460884e999ba9c35 (diff)
Merge pull request #254287 from Artturin/sagedocfix1
sage: If docs are not enabled then don't include a doc attribute
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/sage/sage.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/science/math/sage/sage.nix b/pkgs/applications/science/math/sage/sage.nix
index 2cd6336675c33..227e4bbdbfdbc 100644
--- a/pkgs/applications/science/math/sage/sage.nix
+++ b/pkgs/applications/science/math/sage/sage.nix
@@ -47,10 +47,11 @@ stdenv.mkDerivation rec {
   passthru = {
     tests = sage-tests;
     quicktest = sage-tests.override { longTests = false; timeLimit = 600; }; # as many tests as possible in ~10m
-    doc = sagedoc;
     lib = sage-with-env.env.lib;
     with-env = sage-with-env;
     kernelspec = jupyter-kernel-definition;
+  } // lib.optionalAttrs withDoc {
+    doc = sagedoc;
   };
 
   meta = with lib; {