summary refs log tree commit diff
path: root/pkgs/development/python-modules/librosa
diff options
context:
space:
mode:
authorJon <jonringer@users.noreply.github.com>2019-11-13 02:55:48 -0800
committerRenaud <c0bw3b@users.noreply.github.com>2019-11-13 11:55:48 +0100
commit529f030d26337a4fe5348e094461ada1be529886 (patch)
tree073614e1ba2de2c0f24a8693f94885a8177dd673 /pkgs/development/python-modules/librosa
parent4f3c2a2410b13846a43db4afb85213fb92447b67 (diff)
downloadnixpkgs-529f030d26337a4fe5348e094461ada1be529886.tar
nixpkgs-529f030d26337a4fe5348e094461ada1be529886.tar.gz
nixpkgs-529f030d26337a4fe5348e094461ada1be529886.tar.bz2
nixpkgs-529f030d26337a4fe5348e094461ada1be529886.tar.lz
nixpkgs-529f030d26337a4fe5348e094461ada1be529886.tar.xz
nixpkgs-529f030d26337a4fe5348e094461ada1be529886.tar.zst
nixpkgs-529f030d26337a4fe5348e094461ada1be529886.zip
python3Packages.librosa: add missing dependency
 (#72842)
Diffstat (limited to 'pkgs/development/python-modules/librosa')
-rw-r--r--pkgs/development/python-modules/librosa/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/librosa/default.nix b/pkgs/development/python-modules/librosa/default.nix
index 6e878a851bb..8920fecf3da 100644
--- a/pkgs/development/python-modules/librosa/default.nix
+++ b/pkgs/development/python-modules/librosa/default.nix
@@ -8,6 +8,7 @@
 , decorator
 , audioread
 , resampy
+, soundfile
 }:
 
 buildPythonPackage rec {
@@ -19,7 +20,7 @@ buildPythonPackage rec {
     sha256 = "cca58a2d9a47e35be63a3ce36482d241453bfe9b14bde2005430f969bd7d013a";
   };
 
-  propagatedBuildInputs = [ joblib matplotlib six scikitlearn decorator audioread resampy ];
+  propagatedBuildInputs = [ joblib matplotlib six scikitlearn decorator audioread resampy soundfile ];
 
   # No tests
   doCheck = false;