feat: Make ruamel-yaml installable

Based on
<https://github.com/nix-community/poetry2nix/issues/322#issuecomment-874944931>
This commit is contained in:
Victor Engmark 2021-08-25 12:16:15 +12:00
parent f0ef3fee80
commit b41301ef0c

View file

@ -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 (
old:
if old.format != "wheel" then {