guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 320b4e2866ffe9458c3ac294d0f94e0baa615b6a
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Sat Mar 7 14:41:44 2026 +0100
gnu: Add [email protected].
* gnu/packages/python-xyz.scm (pybind11-2.10): New variable.
Change-Id: I849d537bef8bccc3dd5f1e8206560bf25d349041
---
gnu/packages/python-xyz.scm | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 08eae1c55c..1bbdaf046a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26818,6 +26818,22 @@ inferring type information using compile-time
introspection.")
python-setuptools
python-wrapper))))
+;; Needed for scipy
+(define-public pybind11-2.10
+ (package
+ (inherit pybind11-2.13)
+ (name "pybind11")
+ (version "2.10.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pybind/pybind11")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0rbcfvl7y472sykzdq3vrkw83kar0lpzhk3wq9yj9cdydl8cpfcz"))))))
+
;; Temporary compatibility alias for existing users of the 2.x package.
(define-public pybind11-2
pybind11-2.13)