Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.fastpair: disable tests

authored by Mario Rodas and committed by Frederik Rietdijk 0a59ea60 59d07914

+6 -3
+6 -3
pkgs/development/python-modules/fastpair/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchFromGitHub, pytestrunner, pytest_3, scipy }: 1 + { stdenv, buildPythonPackage, fetchFromGitHub, pytestrunner, pytest, scipy }: 2 2 3 3 buildPythonPackage { 4 4 pname = "fastpair"; ··· 11 11 sha256 = "1pv9sxycxdk567s5gs947rhlqngrb9nn9yh4dhdvg1ix1i8dca71"; 12 12 }; 13 13 14 - nativeBuildInputs = [ (pytestrunner.override { pytest = pytest_3; }) ]; 14 + nativeBuildInputs = [ pytestrunner ]; 15 15 16 - checkInputs = [ pytest_3 ]; 16 + checkInputs = [ pytest ]; 17 17 18 18 propagatedBuildInputs = [ 19 19 scipy 20 20 ]; 21 + 22 + # Does not support pytest 4 https://github.com/carsonfarmer/fastpair/issues/14 23 + doCheck = false; 21 24 22 25 checkPhase = '' 23 26 pytest fastpair