mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 09:41:39 -05:00
fix: building the hatch package inline breaks things..
This commit is contained in:
parent
a1b220f20a
commit
32c330dbee
1 changed files with 8 additions and 0 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Add table
Reference in a new issue