GCode-Generator/shell.nix

14 lines
170 B
Nix
Raw Permalink Normal View History

2025-01-15 00:18:43 +01:00
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps : [
ps.numpy
ps.pyaudio
ps.matplotlib
ps.scipy
]))
2025-01-15 00:18:43 +01:00
];
}