oizys/modules/langs/python.nix

28 lines
746 B
Nix
Raw Normal View History

2024-01-23 15:36:52 -06:00
{config, lib,pkgs,...}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.languages.python;
in
{
options.languages.python.enable = mkEnableOption "python";
config = mkIf cfg.enable {
2024-01-23 11:51:13 -06:00
environment.systemPackages = with pkgs; [
# https://github.com/Mic92/nix-ld?tab=readme-ov-file#my-pythonnodejsrubyinterpreter-libraries-do-not-find-the-libraries-configured-by-nix-ld
(pkgs.writeShellScriptBin "python" ''
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
exec ${pkgs.python3}/bin/python "$@"
'')
(pkgs.writeShellScriptBin "python3" ''
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
exec ${pkgs.python3}/bin/python "$@"
'')
(python3.withPackages (ps: with ps; [pip]))
micromamba
];
2024-01-23 15:36:52 -06:00
};
2024-01-23 11:51:13 -06:00
}