diff --git a/overrides.nix b/overrides.nix index f49f89e..8064f8d 100644 --- a/overrides.nix +++ b/overrides.nix @@ -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'/) + ''; + }); + }