fix fcspline dublication

This commit is contained in:
Valentin Boettcher 2022-02-05 16:06:14 +01:00
parent 1411d26876
commit 3d40a1dc49

View file

@ -49,7 +49,7 @@
}
);
qutip = super.fcspline.overridePythonAttrs (
qutip = super.qutip.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [
self.cython
@ -82,6 +82,11 @@
}
);
numba = super.numba.override (
{
preferWheel = false;
});
numpy = super.numpy.override (
{
blas = super.mkl;