mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 22:27:50 -05:00
Fix. Everything. Co-authored-by: Andrei Cravtov <the.andrei.cravtov@gmail.com> Co-authored-by: Matt Beton <matthew.beton@gmail.com> Co-authored-by: Alex Cheema <alexcheema123@gmail.com> Co-authored-by: Seth Howes <sethshowes@gmail.com>
21 lines
347 B
Nix
21 lines
347 B
Nix
# Configures Python shell
|
|
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
make-shells.default = {
|
|
packages = [
|
|
pkgs.python313
|
|
pkgs.uv
|
|
pkgs.ruff
|
|
pkgs.basedpyright
|
|
];
|
|
|
|
shellHook = ''
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${pkgs.python313}/lib
|
|
'';
|
|
};
|
|
};
|
|
}
|