added matplotlib to plot graphs; elements are now sorted from newest to oldest; slight changes in html structure;

This commit is contained in:
mia 2025-05-21 21:21:39 +00:00
parent d7a1026ad1
commit 47f6657327
8 changed files with 73 additions and 16 deletions

View file

@ -1,10 +1,14 @@
{ pkgs ? import <nixpkgs> {} }:
(pkgs.buildFHSUserEnv {
name = "pipzone";
targetPkgs = pkgs: (with pkgs; [
python313
python313Packages.pip
python313Packages.virtualenv
]);
runScript = "bash --init-file /etc/profile";
}).env
pkgs.mkShell {
buildInputs = [
(pkgs.python3.withPackages (ps: with ps; [
matplotlib
numpy
]))
];
shellHook = ''
export SHELL=${pkgs.zsh}/bin/zsh
exec ${pkgs.zsh}/bin/zsh
'';
}