diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-22 22:55:49 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-26 21:22:06 +0000 |
| commit | 720b0aa871e652b0e23e1e0cd12f3623f3cbbf02 (patch) | |
| tree | 2bdaa1040d147d825fb9e976abf0d130efa120b2 /gnu/packages/simulation.scm | |
| parent | bc4297daa9c9de82ed5d3338a67052fb18e4ce70 (diff) | |
gnu: python-fenics-ufl: Update to 2025.2.0.
* gnu/packages/simulation.scm (python-fenics-ufl): Update to 2025.2.0.
[build-system]: Switch to pyproject-build-system.
[arguments]: Drop them.
[native-inputs]: Add python-setuptools.
[description]: Improve style.
Change-Id: I747c989bd6dbcfa034182523ec6be7976d7f3f33
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/simulation.scm')
| -rw-r--r-- | gnu/packages/simulation.scm | 38 |
1 files changed, 15 insertions, 23 deletions
diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm index b6a917f9930..87442806c31 100644 --- a/gnu/packages/simulation.scm +++ b/gnu/packages/simulation.scm | |||
| @@ -606,32 +606,24 @@ the complexity of that interface. Parallel support depends on the | |||
| 606 | (define-public python-fenics-ufl | 606 | (define-public python-fenics-ufl |
| 607 | (package | 607 | (package |
| 608 | (name "python-fenics-ufl") | 608 | (name "python-fenics-ufl") |
| 609 | (version "2019.1.0") | 609 | (version "2025.2.0") |
| 610 | (source | 610 | (source |
| 611 | (origin | 611 | (origin |
| 612 | (method url-fetch) | 612 | (method url-fetch) |
| 613 | (uri (pypi-uri "fenics-ufl" version)) | 613 | (uri (pypi-uri "fenics_ufl" version)) |
| 614 | (sha256 | 614 | (sha256 |
| 615 | (base32 | 615 | (base32 "1k2r7s1c7dqlgkah4jr08lqy4z17h49r94yxjm7ca16vgvqvq1xg")))) |
| 616 | "10dz8x3lm68x2w3kkqcjask38h0zkhhak26jdbkppr8g9y8wny7p")))) | 616 | (build-system pyproject-build-system) |
| 617 | (build-system python-build-system) | 617 | (inputs (list python-numpy)) |
| 618 | (inputs | 618 | (native-inputs (list python-pytest python-setuptools)) |
| 619 | (list python-numpy)) | ||
| 620 | (native-inputs | ||
| 621 | (list python-pytest)) | ||
| 622 | (arguments | ||
| 623 | '(#:phases | ||
| 624 | (modify-phases %standard-phases | ||
| 625 | (replace 'check | ||
| 626 | (lambda _ | ||
| 627 | (invoke "py.test" "test")))))) | ||
| 628 | (home-page "https://bitbucket.org/fenics-project/ufl/") | 619 | (home-page "https://bitbucket.org/fenics-project/ufl/") |
| 629 | (synopsis "Unified language for form-compilers") | 620 | (synopsis "Unified language for form-compilers") |
| 630 | (description "The Unified Form Language (UFL) is a domain specific | 621 | (description |
| 631 | language for declaration of finite element discretizations of | 622 | "The Unified Form Language (UFL) is a domain specific language for |
| 632 | variational forms. More precisely, it defines a flexible interface | 623 | declaration of finite element discretizations of variational forms. More |
| 633 | for choosing finite element spaces and defining expressions for weak | 624 | precisely, it defines a flexible interface for choosing finite element spaces |
| 634 | forms in a notation close to mathematical notation. | 625 | and defining expressions for weak forms in a notation close to mathematical |
| 626 | notation. | ||
| 635 | 627 | ||
| 636 | UFL is part of the FEniCS Project.") | 628 | UFL is part of the FEniCS Project.") |
| 637 | (license license:lgpl3+))) | 629 | (license license:lgpl3+))) |
