let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps : [
ps.numpy
ps.pyaudio
ps.matplotlib
ps.scipy
]))
];
}