summary refs log tree commit diff
path: root/pkgs/development/python-modules/fastpair
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-07-13 04:26:00 -0500
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-08-13 09:18:25 +0200
commit0a59ea6076e93b8d61eb415ae57f9dfdfbc98bdb (patch)
treee8059137fc29d4453476f254ca39e7a4bcb66cb5 /pkgs/development/python-modules/fastpair
parent59d07914da0dc3a83385a25c272211139100e424 (diff)
downloadnixpkgs-0a59ea6076e93b8d61eb415ae57f9dfdfbc98bdb.tar
nixpkgs-0a59ea6076e93b8d61eb415ae57f9dfdfbc98bdb.tar.gz
nixpkgs-0a59ea6076e93b8d61eb415ae57f9dfdfbc98bdb.tar.bz2
nixpkgs-0a59ea6076e93b8d61eb415ae57f9dfdfbc98bdb.tar.lz
nixpkgs-0a59ea6076e93b8d61eb415ae57f9dfdfbc98bdb.tar.xz
nixpkgs-0a59ea6076e93b8d61eb415ae57f9dfdfbc98bdb.tar.zst
nixpkgs-0a59ea6076e93b8d61eb415ae57f9dfdfbc98bdb.zip
pythonPackages.fastpair: disable tests
Diffstat (limited to 'pkgs/development/python-modules/fastpair')
-rw-r--r--pkgs/development/python-modules/fastpair/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/fastpair/default.nix b/pkgs/development/python-modules/fastpair/default.nix
index 090f9dd8260..e9e6316bb61 100644
--- a/pkgs/development/python-modules/fastpair/default.nix
+++ b/pkgs/development/python-modules/fastpair/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub, pytestrunner, pytest_3, scipy }:
+{ stdenv, buildPythonPackage, fetchFromGitHub, pytestrunner, pytest, scipy }:
 
 buildPythonPackage {
   pname = "fastpair";
@@ -11,14 +11,17 @@ buildPythonPackage {
     sha256 = "1pv9sxycxdk567s5gs947rhlqngrb9nn9yh4dhdvg1ix1i8dca71";
   };
 
-  nativeBuildInputs = [ (pytestrunner.override { pytest = pytest_3; }) ];
+  nativeBuildInputs = [ pytestrunner ];
 
-  checkInputs = [ pytest_3 ];
+  checkInputs = [ pytest ];
 
   propagatedBuildInputs = [
     scipy
   ];
 
+  # Does not support pytest 4 https://github.com/carsonfarmer/fastpair/issues/14
+  doCheck = false;
+
   checkPhase = ''
     pytest fastpair
   '';