summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Tournier <simon.tournier@u-paris.fr>2026-02-24 16:32:24 +0100
committerGhislain Vaillant <ghislain.vaillant@inria.fr>2026-03-25 10:32:29 +0100
commiteb423e577bb99b1f58f5dba877f7f696774d90d2 (patch)
tree5db1b1c33c8baac54c43efd369766473310152bb
parent7024ddd062fbd088106e06bc9fb1c42de06cfd09 (diff)
python: Remove pybind11@2.6.1.
* guix-science/packages/python.scm (pybind11-2.6.1): Delete variable. Closes: guix-science/guix-science#569 Merges: guix-science/guix-science!589
-rw-r--r--guix-science/packages/python.scm27
1 files changed, 0 insertions, 27 deletions
diff --git a/guix-science/packages/python.scm b/guix-science/packages/python.scm
index d7aa8d6..6ffe65f 100644
--- a/guix-science/packages/python.scm
+++ b/guix-science/packages/python.scm
@@ -120,33 +120,6 @@
120providing utilities for various projects.") 120providing utilities for various projects.")
121 (license license:asl2.0))) 121 (license license:asl2.0)))
122 122
123(define-public pybind11-2.6.1
124 (package (inherit pybind11)
125 (name "pybind11")
126 (version "2.6.1")
127 (source (origin
128 (method git-fetch)
129 (uri (git-reference
130 (url "https://github.com/pybind/pybind11")
131 (commit (string-append "v" version))))
132 (sha256
133 (base32
134 "1wh5b1xnywzxwxkyac2wvyqwzmy1qxs341jjk820r7b825wn6yad"))
135 (file-name (git-file-name name version))))
136 (arguments
137 (substitute-keyword-arguments (package-arguments pybind11)
138 ((#:phases phases #~%standard-phases)
139 #~(modify-phases #$phases
140 (add-after 'unpack 'skip-failing-test
141 (lambda _
142 (substitute* "tests/test_exceptions.py"
143 ;; This test fails with Python 3.10; skip it.
144 (("^def test_python_alreadyset_in_destructor(.*)" _ rest)
145 (string-append
146 "def test_python_alreadyset_in_destructor"
147 rest "\n"
148 " return\n")))))))))))
149
150(define-public python-nr.stream 123(define-public python-nr.stream
151 (deprecated-package "python-nr.stream" python-nr-stream)) 124 (deprecated-package "python-nr.stream" python-nr-stream))
152 125