added matplotlib to plot graphs; elements are now sorted from newest to oldest; slight changes in html structure;
This commit is contained in:
parent
d7a1026ad1
commit
47f6657327
8 changed files with 73 additions and 16 deletions
22
shell.nix
22
shell.nix
|
@ -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
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue