about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/math/sage/python-modules/sage-setup.nix
blob: e1c497678d50bf2100c147a1c8a2c84e67060a74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, sage-src
, cython
, jinja2
, pkgconfig # the python module, not the pkg-config alias
}:

buildPythonPackage rec {
  version = src.version;
  pname = "sage-setup";
  src = sage-src;

  nativeBuildInputs = [ cython ];
  buildInputs = [ pkgconfig ];
  propagatedBuildInputs = [ jinja2 ];

  preBuild = ''
    cd pkgs/sage-setup
  '';

  doCheck = false; # sagelib depends on sage-setup, but sage-setup's tests depend on sagelib

  meta = with lib; {
    description = "Build system of the Sage library";
    homepage = "https://www.sagemath.org";
    license = licenses.gpl2Plus;
    maintainers = teams.sage.members;
  };
}