mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-01-02 21:23:08 +00:00
24 lines
487 B
Nix
24 lines
487 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
# Defines a python + set of packages.
|
|
(python3.withPackages (ps: with ps; with python3Packages; [
|
|
jupyter
|
|
ipython
|
|
|
|
# Uncomment the following lines to make them available in the shell.
|
|
# pandas
|
|
numpy
|
|
matplotlib
|
|
scipy
|
|
sympy
|
|
pyvis
|
|
networkx
|
|
]))
|
|
];
|
|
|
|
# Automatically run jupyter when entering the shell.
|
|
shellHook = "jupyter notebook";
|
|
}
|