From f76ffc3ea607aa65820aaa87d9b681ba535a7e5d Mon Sep 17 00:00:00 2001 From: Felix Gruber Date: Sat, 4 Nov 2023 15:02:30 +0000 Subject: gnu: Add python-meshzoo. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-science.scm (python-meshzoo): New variable. Change-Id: Ia41d62ebd6c4cb3c22ebe0668c36279a9ca191ac Signed-off-by: Ludovic Courtès --- gnu/packages/python-science.scm | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 949cd11929..e836235a6b 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -14,7 +14,7 @@ ;;; Copyright © 2021 Roel Janssen ;;; Copyright © 2021 Paul Garlick ;;; Copyright © 2021 Arun Isaac -;;; Copyright © 2021 Felix Gruber +;;; Copyright © 2021, 2023 Felix Gruber ;;; Copyright © 2022 Malte Frank Gerdes ;;; Copyright © 2022 Guillaume Le Vaillant ;;; Copyright © 2022 Paul A. Patience @@ -420,6 +420,31 @@ manipulation and analysis, in the style of the Polygon object in the Shapely library.") (license license:expat))) +(define-public python-meshzoo + (package + (name "python-meshzoo") + (version "0.9.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/diego-hayashi/meshzoo") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "107byfppbq16fqyp2hw7ydcvvahspzq0hzvlvzqg2zxi1aigbr68")))) + (build-system pyproject-build-system) + (propagated-inputs + (list python-numpy)) + (native-inputs (list python-flit-core python-matplotlib python-pytest)) + (home-page "https://github.com/diego-hayashi/meshzoo") + (synopsis "Mesh generator for simple geometries") + (description + "@code{meshzoo} is a mesh generator for finite element or finite +volume computations for simple domains like regular polygons, disks, +spheres, cubes, etc.") + (license license:gpl3+))) + (define-public python-tspex (package (name "python-tspex") -- cgit v1.2.3 ss='list nowrap'>AgeCommit message (Expand)Author 2022-08-05tests: Make tests inside container reproducible....Andrew Tropin 2022-07-14home: services: environment-variables: Double-quote values....Ludovic Courtès 2022-07-14home: services: shells: Double-quote environment variable values....Ludovic Courtès 2022-04-19tests: Adjust 'guix home' test to 'home-files-service-type' changes....Ludovic Courtès 2022-03-19guix home: Add 'container' command....Ludovic Courtès 2022-03-18guix home: Implement the 'extension-graph' and 'shepherd-graph' actions....Ludovic Courtès 2022-03-10tests: Check 'guix home reconfigure' for a second generation....Ludovic Courtès 2022-03-10tests: Simplify use of 'local-file' in 'tests/guix-home.sh'....Ludovic Courtès 2022-03-10tests: Make sure 'guix home reconfigure' backs up files....Ludovic Courtès