fix: building the hatch package inline breaks things..

This commit is contained in:
Ryan Swart 2023-02-06 12:40:15 +08:00 committed by adisbladis
parent a1b220f20a
commit 32c330dbee

View file

@ -1015,6 +1015,14 @@ lib.composeManyExtensions [
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ self.setuptools self.wheel ];
});
jupyter-server = super.jupyter-server.overridePythonAttrs (old: {
doCheck = false;
nativeBuildInputs = (old.nativeBuildInputs or [ ])
++ [ self.hatchling ];
buildInputs = (old.buildInputs or [ ])
++ [ self.hatch-jupyter-builder ];
});
jupyterlab-widgets = super.jupyterlab-widgets.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.jupyter-packaging ];