Skip to content

Commit

Permalink
hotfix: downgrade Python for some broken packages
Browse files Browse the repository at this point in the history
  • Loading branch information
midchildan committed Nov 9, 2023
1 parent c235621 commit f5d980e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion nix/overlays/nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,14 @@

final: prev:

{ }
{
# TODO: remove
# https://github.com/NixOS/nixpkgs/pull/263951
cutter = prev.cutter.override { python3 = prev.python310; };

} // prev.lib.optionalAttrs prev.stdenv.isDarwin {
# FIXME: errors with Python 3.11 in checkPhase
# > FileNotFoundError: [Errno 2] No such file or directory: 'locale'
magic-wormhole =
with prev.python310Packages; toPythonApplication magic-wormhole;
}

0 comments on commit f5d980e

Please sign in to comment.