Merge pull request #272191 from NixOS/pr/awkward_darwin_unbreak
python311Packages.awkward: unbreak on darwin
This commit is contained in:
commit
7a53b73747
1 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
|
@ -57,8 +58,6 @@ buildPythonPackage rec {
|
|||
|
||||
nativeCheckInputs = [
|
||||
fsspec
|
||||
jax
|
||||
jaxlib
|
||||
numba
|
||||
setuptools
|
||||
numexpr
|
||||
|
@ -66,6 +65,10 @@ buildPythonPackage rec {
|
|||
pyarrow
|
||||
pytest-xdist
|
||||
pytestCheckHook
|
||||
] ++ lib.optionals (!stdenv.isDarwin) [
|
||||
# no support for darwin
|
||||
jax
|
||||
jaxlib
|
||||
];
|
||||
|
||||
# The following tests have been disabled because they need to be run on a GPU platform.
|
||||
|
|
Loading…
Reference in a new issue