16 lines
254 B
Nix
16 lines
254 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
python3
|
|
python3Packages.notebook
|
|
python3Packages.numpy
|
|
python3Packages.matplotlib
|
|
graphviz
|
|
python3Packages.networkx
|
|
python3Packages.pydot
|
|
];
|
|
}
|