packages/shells/axidraw/default.nix

13 lines
315 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
2024-01-15 20:48:12 +00:00
] ++ (with python3.pkgs; [ ipython requests axicli drawsvg pillow ]);
2024-01-15 15:55:17 +00:00
}