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
|
{ lib
|
||||||
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
@ -57,8 +58,6 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
fsspec
|
fsspec
|
||||||
jax
|
|
||||||
jaxlib
|
|
||||||
numba
|
numba
|
||||||
setuptools
|
setuptools
|
||||||
numexpr
|
numexpr
|
||||||
|
@ -66,6 +65,10 @@ buildPythonPackage rec {
|
||||||
pyarrow
|
pyarrow
|
||||||
pytest-xdist
|
pytest-xdist
|
||||||
pytestCheckHook
|
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.
|
# The following tests have been disabled because they need to be run on a GPU platform.
|
||||||
|
|
Loading…
Reference in a new issue