python3Packages.skyfield: disable tests on python >= 3.11
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user