Last active
August 6, 2016 15:59
-
-
Save sleexyz/c89141de0ad12b54d583f21612abe2ad to your computer and use it in GitHub Desktop.
for librosa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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