Merge pull request #272191 from NixOS/pr/awkward_darwin_unbreak

python311Packages.awkward: unbreak on darwin
This commit is contained in:
Dmitry Kalinkin 2023-12-05 10:06:17 -05:00 committed by GitHub
commit 7a53b73747
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.