about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/librosa/default.nix
blob: 258c2d6932d532bd60978d71b68ba3b0ceb9faff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv
, buildPythonPackage
, fetchPypi
, joblib
, matplotlib
, six
, scikitlearn
, decorator
, audioread
, resampy
}:

buildPythonPackage rec {
  pname = "librosa";
  version = "0.6.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b332225ac29bfae1ba386deca2b6566271576de3ab17617ad0a71892c799b118";
  };

  propagatedBuildInputs = [ joblib matplotlib six scikitlearn decorator audioread resampy ];

  # No tests
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Python module for audio and music processing";
    homepage = http://librosa.github.io/;
    license = licenses.isc;
  };

}