24 lines
316 B
Nix
24 lines
316 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
let
|
|
pythonPackages = pkgs.python3.withPackages (p: with p; [
|
|
ipython
|
|
jupyterlab
|
|
scipy
|
|
sympy
|
|
bokeh
|
|
bkcharts
|
|
]);
|
|
in
|
|
|
|
pkgs.mkShell {
|
|
|
|
buildInputs = [
|
|
pythonPackages
|
|
pkgs.pandoc
|
|
|
|
# keep this line if you use bash
|
|
pkgs.bashInteractive
|
|
];
|
|
}
|