add it to all

This commit is contained in:
Valentin Boettcher 2022-01-26 16:32:51 +01:00
parent 4bce08b2c4
commit 6591fb65ec

View file

@ -28,6 +28,7 @@
old: { old: {
buildInputs = (old.buildInputs or [ ]) ++ [ buildInputs = (old.buildInputs or [ ]) ++ [
self.cython self.cython
self.poetry
]; ];
} }
); );
@ -40,6 +41,14 @@
} }
); );
binfootprint = super.binfootprint.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [
self.poetry
];
}
);
qutip = super.fcspline.overridePythonAttrs ( qutip = super.fcspline.overridePythonAttrs (
old: { old: {
buildInputs = (old.buildInputs or [ ]) ++ [ buildInputs = (old.buildInputs or [ ]) ++ [
@ -51,6 +60,7 @@
stocproc = super.stocproc.overridePythonAttrs ( stocproc = super.stocproc.overridePythonAttrs (
old: { old: {
buildInputs = (old.buildInputs or [ ]) ++ [ buildInputs = (old.buildInputs or [ ]) ++ [
self.poetry
self.cython self.cython
]; ];
} }