Skip to content

Instantly share code, notes, and snippets.

@sleexyz
Last active August 6, 2016 15:59
Show Gist options
  • Save sleexyz/c89141de0ad12b54d583f21612abe2ad to your computer and use it in GitHub Desktop.
Save sleexyz/c89141de0ad12b54d583f21612abe2ad to your computer and use it in GitHub Desktop.
for librosa
with import <nixpkgs> {}; {
pyEnv = stdenv.mkDerivation {
name = "py";
buildInputs = [
stdenv
python27
blas
gcc
ffmpeg
] ++ (with python27Packages; [
numpy
scipy
librosa
ipython
jupyter
seaborn
]);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment