packages/shells/plotter/default.nix

21 lines
363 B
Nix
Raw Normal View History

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