We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1593115 commit 0eb26e7Copy full SHA for 0eb26e7
pkgs/development/python-modules/nanobind/default.nix
@@ -1,5 +1,6 @@
1
{
2
lib,
3
+ stdenv,
4
buildPythonPackage,
5
fetchFromGitHub,
6
pythonOlder,
@@ -52,6 +53,8 @@ buildPythonPackage rec {
52
53
make -j $NIX_BUILD_CORES
54
'';
55
56
+ # skip testing on platforms disabled for tensorflow-bin
57
+ doCheck = !(builtins.elem stdenv.hostPlatform.system tensorflow-bin.meta.badPlatforms);
58
nativeCheckInputs = [
59
pytestCheckHook
60
numpy
0 commit comments