override to add poetry as dep

This commit is contained in:
Valentin Boettcher 2022-03-21 19:26:43 +01:00
parent e0cf084654
commit 30ea4e6d52

View file

@ -66,6 +66,22 @@
}
);
hopsflow = super.hopsflow.overridePythonAttrs (
old :{
buildInputs = old.buildInputs or [ ] ++ [
self.poetry
];
}
);
hops = super.hops.overridePythonAttrs (
old :{
buildInputs = old.buildInputs or [ ] ++ [
self.poetry
];
}
);
jupyter = super.jupyter-core.overridePythonAttrs (
old: {
postInstall = ''