From 5812d470a986cb7082a74cc71607d232c9f2d2ba Mon Sep 17 00:00:00 2001 From: coolneng Date: Thu, 15 Apr 2021 23:28:57 +0200 Subject: [PATCH] Add numpy dependency --- shell.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index ab1fe93..30377b2 100644 --- a/shell.nix +++ b/shell.nix @@ -2,4 +2,6 @@ with pkgs; -mkShell { buildInputs = [ python39 python39Packages.pandas ]; } +mkShell { + buildInputs = [ python39 python39Packages.numpy python39Packages.pandas ]; +}