nixpkgs/pkgs/development/python-modules/librosa/default.nix
2018-12-03 16:50:31 +01:00

34 lines
623 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, joblib
, matplotlib
, six
, scikitlearn
, decorator
, audioread
, resampy
}:
buildPythonPackage rec {
pname = "librosa";
version = "0.6.2";
src = fetchPypi {
inherit pname version;
sha256 = "2aa868b8aade749b9904eeb7034fcf44115601c367969b6d01f5e1b4b9b6031d";
};
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;
};
}