summary refs log tree commit diff
path: root/pkgs/development/python-modules/whisper
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-12-07 15:31:52 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-07 15:31:52 +0100
commit747aa4cc93252dd668d62aa9cbbb27eeb50fc5c6 (patch)
tree67610c7dafa8cde278c7bc4816de213fdf16807e /pkgs/development/python-modules/whisper
parent4deb04a97ab1cca77f24057d2f6ee9273091316c (diff)
parent12e8ec041a28abd8c5cabd2c9e873df89e41b571 (diff)
downloadnixpkgs-747aa4cc93252dd668d62aa9cbbb27eeb50fc5c6.tar
nixpkgs-747aa4cc93252dd668d62aa9cbbb27eeb50fc5c6.tar.gz
nixpkgs-747aa4cc93252dd668d62aa9cbbb27eeb50fc5c6.tar.bz2
nixpkgs-747aa4cc93252dd668d62aa9cbbb27eeb50fc5c6.tar.lz
nixpkgs-747aa4cc93252dd668d62aa9cbbb27eeb50fc5c6.tar.xz
nixpkgs-747aa4cc93252dd668d62aa9cbbb27eeb50fc5c6.tar.zst
nixpkgs-747aa4cc93252dd668d62aa9cbbb27eeb50fc5c6.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/python-modules/whisper')
-rw-r--r--pkgs/development/python-modules/whisper/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/whisper/default.nix b/pkgs/development/python-modules/whisper/default.nix
index d78d39d9d7a..b48dba39439 100644
--- a/pkgs/development/python-modules/whisper/default.nix
+++ b/pkgs/development/python-modules/whisper/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi, six, mock }:
+{ stdenv, buildPythonPackage, fetchPypi, mock, six }:
 
 buildPythonPackage rec {
   pname = "whisper";
@@ -10,7 +10,6 @@ buildPythonPackage rec {
   };
 
   propagatedBuildInputs = [ six ];
-
   checkInputs = [ mock ];
 
   meta = with stdenv.lib; {