2024-05-14 00:11:31 +00:00
|
|
|
{ ... }:
|
|
|
|
res: pkgs: super:
|
|
|
|
|
|
|
|
with pkgs; {
|
|
|
|
pythonInterpreters = callPackage ./. { };
|
2024-05-14 00:13:23 +00:00
|
|
|
inherit (pythonInterpreters) python3Minimal;
|
2024-05-14 00:11:31 +00:00
|
|
|
|
2024-05-14 00:13:23 +00:00
|
|
|
python3 = python3Minimal;
|
2024-05-14 00:11:31 +00:00
|
|
|
|
|
|
|
# Should eventually be moved inside Python interpreters.
|
|
|
|
python-setup-hook = buildPackages.callPackage ./setup-hook.nix { };
|
|
|
|
}
|