Unverified Commit 844e9777 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.nanobind: 2.2.0 -> 2.4.0 (#366800)

parents 5cd24446 5266096a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -27,14 +27,14 @@
}:
buildPythonPackage rec {
  pname = "nanobind";
  version = "2.2.0";
  version = "2.4.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "wjakob";
    repo = "nanobind";
    rev = "refs/tags/v${version}";
    hash = "sha256-HtZfpMVz/7VMVrFg48IkitK6P3tA+swOeaLLiKguXXk=";
    tag = "v${version}";
    hash = "sha256-9OpDsjFEeJGtbti4Q9HHl78XaGf8M3lG4ukvHCMzyMU=";
    fetchSubmodules = true;
  };

@@ -85,7 +85,7 @@ buildPythonPackage rec {

  meta = {
    homepage = "https://github.com/wjakob/nanobind";
    changelog = "https://github.com/wjakob/nanobind/blob/${src.rev}/docs/changelog.rst";
    changelog = "https://github.com/wjakob/nanobind/blob/${src.tag}/docs/changelog.rst";
    description = "Tiny and efficient C++/Python bindings";
    longDescription = ''
      nanobind is a small binding library that exposes C++ types in Python and