core/pkgs/by-name/py/python3Minimal/packages.nix

13 lines
293 B
Nix
Raw Normal View History

{ ... }:
res: pkgs: super:
with pkgs; {
pythonInterpreters = callPackage ./. { };
inherit (pythonInterpreters) python3Minimal;
python3 = python3Minimal;
# Should eventually be moved inside Python interpreters.
python-setup-hook = buildPackages.callPackage ./setup-hook.nix { };
}