nixpkgs/pkgs/applications/science/math/sage/python-modules/sage-docbuild.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
534 B
Nix
Raw Normal View History

2021-09-14 01:56:34 +00:00
{ lib
, buildPythonPackage
, sage-src
, sphinx
, jupyter-sphinx
2021-09-14 01:56:34 +00:00
}:
buildPythonPackage rec {
version = src.version;
pname = "sage-docbuild";
src = sage-src;
propagatedBuildInputs = [
sphinx
jupyter-sphinx
2021-09-14 01:56:34 +00:00
];
preBuild = ''
cd pkgs/sage-docbuild
'';
doCheck = false; # we will run tests in sagedoc.nix
meta = with lib; {
description = "Build system of the Sage documentation";
homepage = "https://www.sagemath.org";
license = licenses.gpl2Plus;
maintainers = teams.sage.members;
};
}