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