summaryrefslogtreecommitdiff
path: root/gnu/packages/simulation.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/simulation.scm')
-rw-r--r--gnu/packages/simulation.scm42
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
631language for declaration of finite element discretizations of 624 "The Unified Form Language (UFL) is a domain specific language for
632variational forms. More precisely, it defines a flexible interface 625declaration of finite element discretizations of variational forms. More
633for choosing finite element spaces and defining expressions for weak 626precisely, it defines a flexible interface for choosing finite element spaces
634forms in a notation close to mathematical notation. 627and defining expressions for weak forms in a notation close to mathematical
628notation.
635 629
636UFL is part of the FEniCS Project.") 630UFL is part of the FEniCS Project.")
637 (license license:lgpl3+))) 631 (license license:lgpl3+)))