summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/python-science.scm10
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 6d03a9abe3a..19cebd194b7 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -4934,7 +4934,15 @@ y, z)}.")
4934 ;; FIXME: find more reliable tests file(s), all tests from 4934 ;; FIXME: find more reliable tests file(s), all tests from
4935 ;; test_typing.py fail with error: ModuleNotFoundError: No module named 4935 ;; test_typing.py fail with error: ModuleNotFoundError: No module named
4936 ;; 'distutils.msvccompiler'. 4936 ;; 'distutils.msvccompiler'.
4937 #:tests? #f)) 4937 #:tests? #f
4938 #:phases
4939 #~(modify-phases %standard-phases
4940 (add-before 'build 'unvendor-xsimd
4941 (lambda _
4942 (delete-file-recursively "pythran/xsimd")
4943 (symlink #$(package-source
4944 (this-package-input "xsimd"))
4945 "pythran/xsimd"))))))
4938 (native-inputs 4946 (native-inputs
4939 (list python-setuptools)) 4947 (list python-setuptools))
4940 (propagated-inputs 4948 (propagated-inputs