guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: Add pybind11-2.3.


From: guix-commits
Subject: 02/03: gnu: Add pybind11-2.3.
Date: Sun, 25 Sep 2022 16:06:52 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 5defad2b7c2907649893c1c2073849a80dc381f2
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Sep 24 14:15:56 2022 +0200

    gnu: Add pybind11-2.3.
    
    * gnu/packages/python-xyz.scm (pybind11-2.3): New variable.
---
 gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ffcb023d60..54ed7fefed 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22421,6 +22421,26 @@ library: to minimize boilerplate code in traditional 
extension modules by
 inferring type information using compile-time introspection.")
     (license license:bsd-3)))
 
+;; This is needed for python-vaex-core.
+(define-public pybind11-2.3
+  (package
+    (inherit pybind11)
+    (name "pybind11")
+    (version "2.3.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/pybind/pybind11";)
+                    (commit (string-append "v" version))))
+              (sha256
+               (base32
+                "11b6dniri8m05spfd2a19irz82shf4sdca73566bniggrf3zclnf"))
+              (file-name (git-file-name name version))))
+    (arguments
+     (substitute-keyword-arguments (package-arguments pybind11)
+       ((#:tests? tests? #false)
+        #false)))))
+
 (define-public python-pooch
   (package
     (name "python-pooch")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]