2024-01-23 19:13:42 -06:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
2024-02-27 10:27:41 -06:00
|
|
|
|
|
|
|
inherit (lib) mkIfIn;
|
2024-02-27 10:11:44 -06:00
|
|
|
cfg = config.oizys.languages;
|
2024-01-23 19:13:42 -06:00
|
|
|
in {
|
2024-02-27 10:27:41 -06:00
|
|
|
config = mkIfIn "python" cfg {
|
2024-02-19 10:54:37 -06:00
|
|
|
environment.systemPackages = let
|
|
|
|
python = pkgs.python3.withPackages (ps: with ps; [pip]);
|
2024-02-19 10:42:07 -06:00
|
|
|
in
|
2024-02-19 10:54:37 -06:00
|
|
|
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 ${python}/bin/python "$@"
|
|
|
|
'')
|
2024-01-23 15:36:52 -06:00
|
|
|
|
2024-02-19 10:54:37 -06:00
|
|
|
(pkgs.writeShellScriptBin "python3" ''
|
|
|
|
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
|
|
|
|
exec ${python}/bin/python "$@"
|
|
|
|
'')
|
2024-01-23 15:36:52 -06:00
|
|
|
|
2024-02-26 12:42:09 -06:00
|
|
|
(python3.withPackages (ps: with ps; [pip]))
|
2024-02-19 10:54:37 -06:00
|
|
|
micromamba
|
2024-02-27 11:45:09 -06:00
|
|
|
pixi
|
2024-02-19 10:54:37 -06:00
|
|
|
];
|
2024-01-23 19:13:42 -06:00
|
|
|
};
|
2024-01-23 11:51:13 -06:00
|
|
|
}
|