mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
31 lines
651 B
Nix
31 lines
651 B
Nix
{ 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;
|
|
};
|
|
}
|