diff --git a/flake.nix b/flake.nix index e6fbdea..d562a64 100644 --- a/flake.nix +++ b/flake.nix @@ -28,6 +28,7 @@ old: { buildInputs = (old.buildInputs or [ ]) ++ [ self.cython + self.poetry ]; } ); @@ -40,6 +41,14 @@ } ); + binfootprint = super.binfootprint.overridePythonAttrs ( + old: { + buildInputs = (old.buildInputs or [ ]) ++ [ + self.poetry + ]; + } + ); + qutip = super.fcspline.overridePythonAttrs ( old: { buildInputs = (old.buildInputs or [ ]) ++ [ @@ -51,6 +60,7 @@ stocproc = super.stocproc.overridePythonAttrs ( old: { buildInputs = (old.buildInputs or [ ]) ++ [ + self.poetry self.cython ]; }