diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-08-24 17:49:23 +0200 |
|---|---|---|
| committer | jgart <jgart@dismail.de> | 2025-08-26 09:30:00 -0500 |
| commit | 5c522a1abff0b60d3a3d526605ef41bbf354162e (patch) | |
| tree | b95fdfbbdb4d125832f187cc861e42a3a815330a /gnu/packages/simulation.scm | |
| parent | 6ac22c189a68590e9943149d2862d575640e9ec6 (diff) | |
gnu: python-fenics-ufl: Update to 2025.1.0.
* gnu/packages/simulation.scm (python-fenics-ufl): Update to 2025.1.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]: Remove them.
[native-inputs]: Add python-setuptools, python-wheel.
[home-page, description]: Update.
Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu/packages/simulation.scm')
| -rw-r--r-- | gnu/packages/simulation.scm | 42 |
1 files changed, 18 insertions, 24 deletions
diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm index ff66647bc11..73ce62b6ccf 100644 --- a/gnu/packages/simulation.scm +++ b/gnu/packages/simulation.scm | |||
| @@ -606,32 +606,26 @@ 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.1.0") |
| 610 | (source | 610 | (source |
| 611 | (origin | 611 | (origin |
| 612 | (method url-fetch) | 612 | (method git-fetch) |
| 613 | (uri (pypi-uri "fenics-ufl" version)) | 613 | (uri (git-reference |
| 614 | (sha256 | 614 | (url "https://github.com/fenics/ufl") |
| 615 | (base32 | 615 | (commit version))) |
| 616 | "10dz8x3lm68x2w3kkqcjask38h0zkhhak26jdbkppr8g9y8wny7p")))) | 616 | (file-name (git-file-name name version)) |
| 617 | (build-system python-build-system) | 617 | (sha256 (base32 "1ybf6l2nn4ni4a77ad1f36nhd7ddcbbvyc5frdggsmcjdmds9bf3")))) |
| 618 | (inputs | 618 | (build-system pyproject-build-system) |
| 619 | (list python-numpy)) | 619 | (inputs (list python-numpy)) |
| 620 | (native-inputs | 620 | (native-inputs (list python-pytest python-setuptools python-wheel)) |
| 621 | (list python-pytest)) | 621 | (home-page "https://github.com/fenics/ufl") |
| 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/") | ||
| 629 | (synopsis "Unified language for form-compilers") | 622 | (synopsis "Unified language for form-compilers") |
| 630 | (description "The Unified Form Language (UFL) is a domain specific | 623 | (description |
| 631 | language for declaration of finite element discretizations of | 624 | "The Unified Form Language (UFL) is a domain specific language for |
| 632 | variational forms. More precisely, it defines a flexible interface | 625 | declaration of finite element discretizations of variational forms. More |
| 633 | for choosing finite element spaces and defining expressions for weak | 626 | precisely, it defines a flexible interface for choosing finite element spaces |
| 634 | forms in a notation close to mathematical notation. | 627 | and defining expressions for weak forms in a notation close to mathematical |
| 628 | notation. | ||
| 635 | 629 | ||
| 636 | UFL is part of the FEniCS Project.") | 630 | UFL is part of the FEniCS Project.") |
| 637 | (license license:lgpl3+))) | 631 | (license license:lgpl3+))) |
