Files
prog-team-proj/shell.nix
Paulo Jorge Medeiros Alexandre 2573cfaf13 fhiiiofhweoi
aaaaaaaa
2025-12-12 20:29:23 -01:00

15 lines
225 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
python3
python3Packages.pandas
python3Packages.numpy
python3Packages.matplotlib
];
shellHook = ''
echo "Funcionou"
'';
}