mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 01:31:39 -05:00
feat: Make ruamel-yaml installable
Based on <https://github.com/nix-community/poetry2nix/issues/322#issuecomment-874944931>
This commit is contained in:
parent
f0ef3fee80
commit
b41301ef0c
1 changed files with 7 additions and 0 deletions
|
@ -1426,6 +1426,13 @@ self: super:
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ruamel-yaml = super.ruamel-yaml.overridePythonAttrs (
|
||||||
|
old: {
|
||||||
|
propagatedBuildInputs = (old.propagatedBuildInputs or [ ])
|
||||||
|
++ [ self.ruamel-yaml-clib ];
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
scipy = super.scipy.overridePythonAttrs (
|
scipy = super.scipy.overridePythonAttrs (
|
||||||
old:
|
old:
|
||||||
if old.format != "wheel" then {
|
if old.format != "wheel" then {
|
||||||
|
|
Loading…
Add table
Reference in a new issue