14 lines
221 B
Nix
14 lines
221 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
packages = [
|
|
(pkgs.python3.withPackages (py: [
|
|
py.jupyter
|
|
py.numpy
|
|
py.pandas
|
|
py.matplotlib
|
|
py.scikit-learn
|
|
py.plotly
|
|
]))
|
|
];
|
|
}
|