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