python.pkgs.cysignals: propagate pari
This didn't cause issues earlier since all packages that depend on cysignals have a pari dependency anyways.
This commit is contained in:
parent
1f643b9c49
commit
930fa9b92e
|
@ -31,12 +31,13 @@ buildPythonPackage rec {
|
|||
export PATH="$out/bin:$PATH"
|
||||
'';
|
||||
|
||||
buildInputs = lib.optionals pariSupport [
|
||||
pari
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cython
|
||||
] ++ lib.optionals pariSupport [
|
||||
# When cysignals is built with pari, including cysignals into the
|
||||
# buildInputs of another python package will cause cython to link against
|
||||
# pari.
|
||||
pari
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
|
Loading…
Reference in New Issue