From 392e56bcebdbc391e1c63bdaebc2f9e89270f1f8 Mon Sep 17 00:00:00 2001 From: Julian T Date: Tue, 6 Apr 2021 13:04:14 +0200 Subject: Add nix-shell and prob things --- shells/pymath.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 shells/pymath.nix (limited to 'shells') diff --git a/shells/pymath.nix b/shells/pymath.nix new file mode 100644 index 0000000..5fa8b1e --- /dev/null +++ b/shells/pymath.nix @@ -0,0 +1,16 @@ +{ pkgs ? import {}, pythonPackages ? pkgs.python38Packages }: + +pkgs.mkShell { + buildInputs = with pythonPackages; [ + jupyterlab + jupyter-c-kernel + numpy + scipy + matplotlib + ]; + + shellHook = '' + echo Lets do some python + alias start="jupyter lab" + ''; +} -- cgit v1.2.3