gnu: python-petsc4py: Fix build with python 3.8.
* gnu/packages/maths.scm (python-petsc4py)[source]: Add snippet. [native-inputs]: New field.
This commit is contained in:
parent
e3ae313478
commit
c6843f1751
1 changed files with 14 additions and 1 deletions
|
@ -2470,7 +2470,18 @@ scientific applications modeled by partial differential equations.")
|
||||||
(uri (pypi-uri "petsc4py" version))
|
(uri (pypi-uri "petsc4py" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1rm1qj5wlkhxl39by9n78lh3gbmii31wsnb8j1rr5hvfr5xgbx2q"))))
|
"1rm1qj5wlkhxl39by9n78lh3gbmii31wsnb8j1rr5hvfr5xgbx2q"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
;; Ensure source file is regenerated in the build phase.
|
||||||
|
(delete-file "src/petsc4py.PETSc.c")
|
||||||
|
;; Remove legacy GC code. See
|
||||||
|
;; https://bitbucket.org/petsc/petsc4py/issues/125.
|
||||||
|
(substitute* "src/PETSc/cyclicgc.pxi"
|
||||||
|
((".*gc_refs.*") "" )
|
||||||
|
((".*PyGC_Head.*") ""))
|
||||||
|
#t))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -2482,6 +2493,8 @@ scientific applications modeled by partial differential equations.")
|
||||||
#t))
|
#t))
|
||||||
(add-before 'check 'mpi-setup
|
(add-before 'check 'mpi-setup
|
||||||
,%openmpi-setup))))
|
,%openmpi-setup))))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-cython" ,python-cython)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("petsc" ,petsc-openmpi)
|
`(("petsc" ,petsc-openmpi)
|
||||||
("python-numpy" ,python-numpy)))
|
("python-numpy" ,python-numpy)))
|
||||||
|
|
Reference in a new issue