mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add pybind11-2.13.
* gnu/packages/python-xyz.scm (pybind11-2.13): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
04e5c96fb1
commit
2f10079c23
1 changed files with 17 additions and 1 deletions
|
@ -153,7 +153,7 @@
|
|||
;;; Copyright © 2024 Adriel Dumas--Jondeau <leirda@disroot.org>
|
||||
;;; Copyright © 2024 Navid Afkhami <navid.afkhami@mdc-berlin.de>
|
||||
;;; Copyright © 2024 TakeV <takev@disroot.org>
|
||||
;;; Copyright © 2024 David Elsing <david.elsing@posteo.net>
|
||||
;;; Copyright © 2024, 2025 David Elsing <david.elsing@posteo.net>
|
||||
;;; Copyright © 2024 Rick Huijzer <ikbenrickhuyzer@gmail.com>
|
||||
;;; Copyright © 2024 Peter Kannewitz <petre-vps@posteo.net>
|
||||
;;; Copyright © 2024 Aaron Covrig <aaron.covrig.us@ieee.org>
|
||||
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue