Unverified Commit 912c07e2 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

python3Packages.nanobind: 2.5.0 -> 2.6.1 (#394683)

parents 1ed9b91d 8d51b192
Loading
Loading
Loading
Loading
+2 −9
Original line number Diff line number Diff line
@@ -27,14 +27,14 @@
}:
buildPythonPackage rec {
  pname = "nanobind";
  version = "2.5.0";
  version = "2.6.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "wjakob";
    repo = "nanobind";
    tag = "v${version}";
    hash = "sha256-sH+qZHd9OKDxl2yTAeDh4xLwW64k6nIToyLfd3cR6kE=";
    hash = "sha256-1CU5aRhiVPGXLVYZzOM8ELgRwa3hz7kQSwlTYsvFE7s=";
    fetchSubmodules = true;
  };

@@ -57,13 +57,6 @@ buildPythonPackage rec {
  doCheck = false;

  preCheck = ''
    # TODO: added 2.2.0, re-enable on next bump
    # https://github.com/wjakob/nanobind/issues/754
    # "generated stubs do not match their references"
    # > -import tensorflow.python.framework.ops
    # > +import tensorflow
    rm tests/test_ndarray_ext.pyi.ref

    # build tests
    make -j $NIX_BUILD_CORES
  '';