From c7d38c4a7c0a78bc9739ec3fb65244cc45bde9f6 Mon Sep 17 00:00:00 2001 From: coolneng Date: Tue, 22 Jun 2021 03:35:47 +0200 Subject: [PATCH] Import dependencies --- .gitignore | 1 + docs/.gitkeep | 0 shell.nix | 7 +++++-- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .gitignore create mode 100644 docs/.gitkeep diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1269488 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +data diff --git a/docs/.gitkeep b/docs/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/shell.nix b/shell.nix index 81c823e..107409e 100644 --- a/shell.nix +++ b/shell.nix @@ -1,9 +1,12 @@ -{ pkgs ? import {} }: +{ pkgs ? import { } }: with pkgs; mkShell { buildInputs = [ - + python39 + python39Packages.numpy + python39Packages.pandas + python39Packages.XlsxWriter ]; }