Unverified Commit 86d5f06a authored by Zane van Iperen's avatar Zane van Iperen
Browse files

python3Packages.skyfield: disable tests on python >= 3.11

parent 2dace638
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchFromGitHub, certifi, numpy, sgp4, jplephem
{ lib, buildPythonPackage, pythonOlder, fetchFromGitHub, certifi, numpy, sgp4, jplephem
, pandas, ipython, matplotlib, assay
}:

@@ -17,6 +17,10 @@ buildPythonPackage rec {

  nativeCheckInputs = [ pandas ipython matplotlib assay ];

  # assay is broken on Python >= 3.11
  # https://github.com/brandon-rhodes/assay/issues/15
  doCheck = pythonOlder "3.11";

  checkPhase = ''
    runHook preCheck