pythonPackages.librosa: 0.4.0 -> 0.4.3
This commit is contained in:
parent
7847a02db9
commit
72385a35f8
@ -9304,15 +9304,25 @@ in {
|
|||||||
|
|
||||||
|
|
||||||
librosa = buildPythonPackage rec {
|
librosa = buildPythonPackage rec {
|
||||||
name = "librosa-${version}";
|
pname = "librosa";
|
||||||
version = "0.4.0";
|
name = "${pname}-${version}";
|
||||||
|
version = "0.4.3";
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "mirror://pypi/l/librosa/librosa-0.4.0.tar.gz";
|
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
|
||||||
sha256 = "cc11dcc41f51c08e442292e8a2fc7d7ee77e0d47ff771259eb63f57fcee6f6e7";
|
sha256 = "209626c53556ca3922e52d2fae767bf5b398948c867fcc8898f948695dacb247";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with self;
|
propagatedBuildInputs = with self; [ joblib matplotlib six scikitlearn
|
||||||
[ joblib matplotlib six scikitlearn decorator audioread samplerate ];
|
decorator audioread resampy ];
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Python module for audio and music processing";
|
||||||
|
homepage = http://librosa.github.io/;
|
||||||
|
license = licenses.isc;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
joblib = buildPythonPackage rec {
|
joblib = buildPythonPackage rec {
|
||||||
|
Loading…
Reference in New Issue
Block a user