Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 623 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, joblib 5, matplotlib 6, six 7, scikitlearn 8, decorator 9, audioread 10, resampy 11}: 12 13buildPythonPackage rec { 14 pname = "librosa"; 15 version = "0.6.3"; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "b332225ac29bfae1ba386deca2b6566271576de3ab17617ad0a71892c799b118"; 20 }; 21 22 propagatedBuildInputs = [ joblib matplotlib six scikitlearn decorator audioread resampy ]; 23 24 # No tests 25 doCheck = false; 26 27 meta = with stdenv.lib; { 28 description = "Python module for audio and music processing"; 29 homepage = http://librosa.github.io/; 30 license = licenses.isc; 31 }; 32 33}