summary refs log tree commit diff
path: root/pkgs/development/python-modules/audioread
diff options
context:
space:
mode:
authorDavHau <hsngrmpf+github@gmail.com>2021-06-09 14:22:04 +0700
committerDavHau <hsngrmpf+github@gmail.com>2021-06-09 14:22:04 +0700
commit1588db35a24255ccc2f09e5a37af8e716f5d3a98 (patch)
tree46af44f3f8ccc98b4249864358c416bf2c98522e /pkgs/development/python-modules/audioread
parente1a98c34349e931481231cc3e46d1656b6f0ed7d (diff)
downloadnixpkgs-1588db35a24255ccc2f09e5a37af8e716f5d3a98.tar
nixpkgs-1588db35a24255ccc2f09e5a37af8e716f5d3a98.tar.gz
nixpkgs-1588db35a24255ccc2f09e5a37af8e716f5d3a98.tar.bz2
nixpkgs-1588db35a24255ccc2f09e5a37af8e716f5d3a98.tar.lz
nixpkgs-1588db35a24255ccc2f09e5a37af8e716f5d3a98.tar.xz
nixpkgs-1588db35a24255ccc2f09e5a37af8e716f5d3a98.tar.zst
nixpkgs-1588db35a24255ccc2f09e5a37af8e716f5d3a98.zip
python3Packages.audioread: remove input pytestrunner
Diffstat (limited to 'pkgs/development/python-modules/audioread')
-rw-r--r--pkgs/development/python-modules/audioread/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/audioread/default.nix b/pkgs/development/python-modules/audioread/default.nix
index a4f6d905765..d2964accc14 100644
--- a/pkgs/development/python-modules/audioread/default.nix
+++ b/pkgs/development/python-modules/audioread/default.nix
@@ -1,7 +1,6 @@
 { lib
 , buildPythonPackage
 , fetchPypi
-, pytestrunner
 }:
 
 buildPythonPackage rec {
@@ -13,8 +12,6 @@ buildPythonPackage rec {
     sha256 = "a3480e42056c8e80a8192a54f6729a280ef66d27782ee11cbd63e9d4d1523089";
   };
 
-  nativeBuildInputs = [ pytestrunner ];
-
   # No tests, need to disable or py3k breaks
   doCheck = false;