Fix pendulum wheel install

This commit is contained in:
adisbladis 2021-06-28 21:43:53 -05:00
parent 123257b607
commit 765615e043
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -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'/)
'';
});
} }