1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, joblib
5, matplotlib
6, six
7, scikitlearn
8, decorator
9, audioread
10, resampy
11, soundfile
12}:
13
14buildPythonPackage rec {
15 pname = "librosa";
16 version = "0.7.1";
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "cca58a2d9a47e35be63a3ce36482d241453bfe9b14bde2005430f969bd7d013a";
21 };
22
23 propagatedBuildInputs = [ joblib matplotlib six scikitlearn decorator audioread resampy soundfile ];
24
25 # No tests
26 doCheck = false;
27
28 meta = with stdenv.lib; {
29 description = "Python module for audio and music processing";
30 homepage = http://librosa.github.io/;
31 license = licenses.isc;
32 };
33
34}