mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Fix pendulum wheel install
This commit is contained in:
parent
123257b607
commit
765615e043
1 changed files with 7 additions and 0 deletions
|
@ -1858,4 +1858,11 @@ self: super:
|
|||
}
|
||||
);
|
||||
|
||||
pendulum = super.pendulum.overridePythonAttrs (old: {
|
||||
# Technically incorrect, but fixes the build error..
|
||||
preInstall = lib.optionalString stdenv.isLinux ''
|
||||
mv ./dist/*.whl $(echo ./dist/*.whl | sed s/'manylinux_[0-9]*_[0-9]*'/'manylinux1'/)
|
||||
'';
|
||||
});
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue