Files
prog-team-proj/shell.nix

15 lines
225 B
Nix
Raw Normal View History

2025-12-12 20:29:23 -01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
python3
python3Packages.pandas
python3Packages.numpy
python3Packages.matplotlib
];
shellHook = ''
echo "Funcionou"
'';
}