Skip to content

Commit 732608d

Browse files
authored
python312Packages.nanobind: disable checks on x86_64-darwin (#355084)
2 parents 029d6ef + 0eb26e7 commit 732608d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pkgs/development/python-modules/nanobind/default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
lib,
3+
stdenv,
34
buildPythonPackage,
45
fetchFromGitHub,
56
pythonOlder,
@@ -52,6 +53,8 @@ buildPythonPackage rec {
5253
make -j $NIX_BUILD_CORES
5354
'';
5455

56+
# skip testing on platforms disabled for tensorflow-bin
57+
doCheck = !(builtins.elem stdenv.hostPlatform.system tensorflow-bin.meta.badPlatforms);
5558
nativeCheckInputs = [
5659
pytestCheckHook
5760
numpy

0 commit comments

Comments
 (0)