Import dependencies

This commit is contained in:
coolneng 2021-06-22 03:35:47 +02:00
parent e26729d6e3
commit c7d38c4a7c
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
3 changed files with 6 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
data

0
docs/.gitkeep Normal file
View File

View File

@ -1,9 +1,12 @@
{ pkgs ? import <nixpkgs> {} }: { pkgs ? import <nixpkgs> { } }:
with pkgs; with pkgs;
mkShell { mkShell {
buildInputs = [ buildInputs = [
python39
python39Packages.numpy
python39Packages.pandas
python39Packages.XlsxWriter
]; ];
} }