From 2f10079c2347153920da6d992b65aaaf8f37bf98 Mon Sep 17 00:00:00 2001 From: David Elsing Date: Wed, 22 Jan 2025 18:32:17 +0000 Subject: [PATCH] gnu: Add pybind11-2.13. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-xyz.scm (pybind11-2.13): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/python-xyz.scm | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7fcf9c3ba8f1b1ed2b4625a3050e21d260cbe106..11113ea00d9c6e7322779f454ee043e362028025 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -153,7 +153,7 @@ ;;; Copyright © 2024 Adriel Dumas--Jondeau ;;; Copyright © 2024 Navid Afkhami ;;; Copyright © 2024 TakeV -;;; Copyright © 2024 David Elsing +;;; Copyright © 2024, 2025 David Elsing ;;; Copyright © 2024 Rick Huijzer ;;; Copyright © 2024 Peter Kannewitz ;;; Copyright © 2024 Aaron Covrig @@ -29080,6 +29080,22 @@ library: to minimize boilerplate code in traditional extension modules by inferring type information using compile-time introspection.") (license license:bsd-3))) +;; Needed for python-optree +(define-public pybind11-2.13 + (package + (inherit pybind11) + (name "pybind11") + (version "2.13.6") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pybind/pybind11") + (commit (string-append "v" version)))) + (sha256 + (base32 + "1dbnki0pnky39kr04afd9ks597bzjc530zbk33jjss53nfvdvlj8")) + (file-name (git-file-name name version)))))) + ;; Needed for scipy (define-public pybind11-2.10 (package