2024-10-15 13:04:51 +02:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
|
|
|
|
pkgs.mkShell {
|
2024-11-18 12:13:17 +01:00
|
|
|
packages = with pkgs; [
|
2024-11-19 20:16:57 +01:00
|
|
|
typst
|
|
|
|
typstyle
|
|
|
|
tinymist
|
|
|
|
tdf
|
|
|
|
agebox
|
|
|
|
mermaid-cli
|
2024-11-18 12:13:17 +01:00
|
|
|
|
2024-11-19 20:16:57 +01:00
|
|
|
# for math
|
|
|
|
python312
|
|
|
|
python312Packages.sympy
|
|
|
|
python312Packages.numpy
|
|
|
|
python312Packages.matplotlib
|
|
|
|
python312Packages.scipy
|
|
|
|
python312Packages.pandas
|
|
|
|
python312Packages.jupyter
|
|
|
|
python312Packages.ipykernel
|
2024-10-15 13:04:51 +02:00
|
|
|
];
|
|
|
|
}
|