packages/shells/plotter/default.nix

29 lines
422 B
Nix
Raw Normal View History

2024-06-06 00:11:34 +00:00
{
lib,
mkShell,
python3,
inkscape-with-extensions,
inkscape-extensions,
jupyter,
2024-01-15 20:42:27 +00:00
}:
2024-01-15 15:55:17 +00:00
mkShell {
2024-06-06 00:11:34 +00:00
packages =
[
(inkscape-with-extensions.override {
inkscapeExtensions = with inkscape-extensions; [
inkcut
axidraw
];
})
python3
jupyter
]
++ (with python3.pkgs; [
axicli
drawsvg
ipython
pillow
requests
]);
2024-01-15 15:55:17 +00:00
}