diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..d74d11c --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +{pkgs ? import {}}: +with pkgs; + mkShell rec { + packages = [python3 jupyter-all python3Packages.librosa python3Packages.tinygrad python3Packages.numpy python3Packages.mlflow python3Packages.tqdm python3Packages.sounddevice]; + nativeBuildInputs = []; + buildInputs = []; + LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs; + }