[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#33059] [PATCH v2 2/9] gnu: Add python-petsc4py.
From: |
Paul Garlick |
Subject: |
[bug#33059] [PATCH v2 2/9] gnu: Add python-petsc4py. |
Date: |
Mon, 12 Nov 2018 16:00:34 +0000 |
* gnu/packages/maths.scm (python-petsc4py): New variable.
---
gnu/packages/maths.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 0d040bf..e36a574 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1808,6 +1808,41 @@ scientific applications modeled by partial differential
equations.")
,@(delete "--with-mpi=0" ,cf)))))
(synopsis "Library to solve PDEs (with complex scalars and MPI support)")))
+(define-public python-petsc4py
+ (package
+ (name "python-petsc4py")
+ (version "3.9.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "petsc4py" version))
+ (sha256
+ (base32
+ "1f8zd1ac9irsgkyqmzq30d9kl10fy1nh6zk312dhs43g449fkkhc"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'build 'pre-build
+ (lambda _
+ ;; Define path to PETSc installation.
+ (setenv "PETSC_DIR" (assoc-ref %build-inputs "petsc"))
+ #t))
+ (add-before 'check 'mpi-setup
+ ,%openmpi-setup))))
+ (inputs
+ `(("petsc" ,petsc-openmpi)
+ ("python-numpy" ,python-numpy)))
+ (home-page "https://bitbucket.org/petsc/petsc4py/")
+ (synopsis "Python bindings for PETSc")
+ (description "PETSc, the Portable, Extensible Toolkit for
+Scientific Computation, is a suite of data structures and routines for
+the scalable (parallel) solution of scientific applications modeled by
+partial differential equations. It employs the MPI standard for all
+message-passing communication. @code{petsc4py} provides Python
+bindings to almost all functions of PETSc.")
+ (license license:bsd-3)))
+
(define-public python-kiwisolver
(package
(name "python-kiwisolver")
--
1.8.3.1
- [bug#33059] [PATCH v2 0/9] Add the FEniCS Project, v2 patches, Paul Garlick, 2018/11/12
- [bug#33059] [PATCH v2 3/9] gnu: Add python-slepc4py., Paul Garlick, 2018/11/12
- [bug#33059] [PATCH v2 2/9] gnu: Add python-petsc4py.,
Paul Garlick <=
- [bug#33059] [PATCH v2 9/9] gnu: Add fenics., Paul Garlick, 2018/11/12
- [bug#33059] [PATCH v2 1/9] gnu: Add python-mpi4py., Paul Garlick, 2018/11/12
- [bug#33059] [PATCH v2 6/9] gnu: Add python-fenics-fiat., Paul Garlick, 2018/11/12
- [bug#33059] [PATCH v2 4/9] gnu: Add python-fenics-dijitso., Paul Garlick, 2018/11/12
- [bug#33059] [PATCH v2 7/9] gnu: Add python-fenics-ffc., Paul Garlick, 2018/11/12
- [bug#33059] [PATCH v2 8/9] gnu: Add fenics-dolfin., Paul Garlick, 2018/11/12
- [bug#33059] [PATCH v2 5/9] gnu: Add python-fenics-ufl., Paul Garlick, 2018/11/12
- bug#33059: [PATCH v2 0/9] Add the FEniCS Project, v2 patches, Ludovic Courtès, 2018/11/14