due to its incapability to easily render images or graphs. The program now also uses a new class called 'Sensor' instead of a very long for loop to correctly format the data from the json file. Added LICENSE file Added favicon Added Flask HTML
15 lines
266 B
Nix
15 lines
266 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
(pkgs.python3.withPackages (ps: with ps; [
|
|
matplotlib
|
|
numpy
|
|
flask
|
|
]))
|
|
];
|
|
# shellHook = ''
|
|
# export SHELL=${pkgs.zsh}/bin/zsh
|
|
# exec ${pkgs.zsh}/bin/zsh
|
|
# '';
|
|
}
|