2025-11-24 16:51:30 +01:00

31 lines
578 B
Nix

{
outputs =
{ nixpkgs, ... }:
{
devShells.x86_64-linux =
let
python = pkgs.python312Full;
pythonEnv = python.withPackages (
ps: with ps; [
pip
ipython
matplotlib
numpy
ruff
jedi-language-server
]
);
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
{
default = pkgs.mkShell {
packages = [
pythonEnv
];
};
};
};
}