nixpkgs/pkgs/applications/science/math/sage/sage.nix

69 lines
1.8 KiB
Nix
Raw Normal View History

2018-04-24 21:53:36 +00:00
{ stdenv
, makeWrapper
2018-11-12 22:28:29 +00:00
, sage-tests
, sage-with-env
, jupyter-kernel-definition
, jupyter-kernel
2018-11-12 22:28:29 +00:00
, sagedoc
, withDoc
2018-04-24 21:53:36 +00:00
}:
# A wrapper that makes sure sage finds its docs (if they were build) and the
# jupyter kernel spec.
2018-11-12 22:28:29 +00:00
2019-06-19 15:45:34 +00:00
let
# generate kernel spec + default kernels
kernel-specs = jupyter-kernel.create {
definitions = jupyter-kernel.default // {
sagemath = jupyter-kernel-definition;
};
};
in
2018-04-24 21:53:36 +00:00
stdenv.mkDerivation rec {
2018-11-12 22:28:29 +00:00
version = src.version;
pname = "sage";
2018-11-12 22:28:29 +00:00
src = sage-with-env.env.lib.src;
2018-04-24 21:53:36 +00:00
buildInputs = [
makeWrapper
2018-11-12 22:28:29 +00:00
# This is a hack to make sure sage-tests is evaluated. It doesn't acutally
# produce anything of value, it just decouples the tests from the build.
sage-tests
2018-04-24 21:53:36 +00:00
];
2019-06-19 15:45:34 +00:00
dontUnpack = true;
2018-04-24 21:53:36 +00:00
configurePhase = "#do nothing";
buildPhase = "#do nothing";
installPhase = ''
mkdir -p "$out/bin"
2018-11-12 22:28:29 +00:00
makeWrapper "${sage-with-env}/bin/sage" "$out/bin/sage" \
--set SAGE_DOC_SRC_OVERRIDE "${src}/src/doc" ${
stdenv.lib.optionalString withDoc "--set SAGE_DOC_OVERRIDE ${sagedoc}/share/doc/sage"
} \
--prefix JUPYTER_PATH : "${kernel-specs}"
2018-04-24 21:53:36 +00:00
'';
2018-11-12 22:28:29 +00:00
doInstallCheck = withDoc;
2018-04-24 21:53:36 +00:00
installCheckPhase = ''
export HOME="$TMPDIR/sage-home"
mkdir -p "$HOME"
2018-11-12 22:28:29 +00:00
"$out/bin/sage" -c 'browse_sage_doc._open("reference", testing=True)'
2018-04-24 21:53:36 +00:00
'';
2018-11-12 22:28:29 +00:00
passthru = {
tests = sage-tests;
2018-11-24 21:59:51 +00:00
quicktest = sage-tests.override { longTests = false; timeLimit = 600; }; # as many tests as possible in ~10m
2018-11-12 22:28:29 +00:00
doc = sagedoc;
lib = sage-with-env.env.lib;
kernelspec = jupyter-kernel-definition;
2018-11-12 22:28:29 +00:00
};
meta = with stdenv.lib; {
description = "Open Source Mathematics Software, free alternative to Magma, Maple, Mathematica, and Matlab";
license = licenses.gpl2;
maintainers = with maintainers; [ timokau ];
};
2018-04-24 21:53:36 +00:00
}