Skip to content

Instantly share code, notes, and snippets.

@lovesegfault
Created November 18, 2020 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lovesegfault/d09ce778adcfadf813118425fdee5884 to your computer and use it in GitHub Desktop.
Save lovesegfault/d09ce778adcfadf813118425fdee5884 to your computer and use it in GitHub Desktop.
self: super: {
pypy3 = (super.pypy3.override {
packageOverrides = _: pySuper: {
psycopg2 = pySuper.psycopg2.overrideAttrs (_: { disabled = false; });
};
}).overrideAttrs (oldAttrs: {
meta.platforms = oldAttrs.meta.platforms ++ [ "aarch64-linux" ];
});
octoprint = super.octoprint.override { python3 = self.pypy3; };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment