gnu: python-pygmsh: Use pyproject-build-system.

* gnu/packages/simulation.scm (python-pygmsh)[build-system]: Switch to
PYPROJECT-BUILD-SYSTEM.
[arguments]: Remove redundant phases.
[native-inputs]: Remove PYTHON-PYPA-BUILD.
This commit is contained in:
Marius Bakke 2022-10-17 21:44:31 +02:00
parent b8efe89eb4
commit e05e2a7a75
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -63,6 +63,7 @@ (define-module (gnu packages simulation)
#:use-module (guix svn-download) #:use-module (guix svn-download)
#:use-module (guix build-system cmake) #:use-module (guix build-system cmake)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system python) #:use-module (guix build-system python)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages) #:use-module (guix packages)
@ -835,7 +836,7 @@ (define-public python-pygmsh
(sha256 (sha256
(base32 (base32
"11flp2c4ynk1fhanf4mqyzrpd0gjbnv6afrwwc7xi3mb6ms69lr0")))) "11flp2c4ynk1fhanf4mqyzrpd0gjbnv6afrwwc7xi3mb6ms69lr0"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments (arguments
(list (list
#:phases #:phases
@ -845,21 +846,8 @@ (define-public python-pygmsh
;; Due to lack of metadata, the gmsh Python package is not ;; Due to lack of metadata, the gmsh Python package is not
;; detected although importable. ;; detected although importable.
(substitute* "pyproject.toml" (substitute* "pyproject.toml"
(("\"gmsh\",") "")))) (("\"gmsh\",") "")))))))
;; XXX: PEP 517 manual build copied from python-isort. (native-inputs (list python-flit-core python-pytest))
(replace 'build
(lambda _
(invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-v" "tests"))))
(replace 'install
(lambda _
(let ((whl (car (find-files "dist" "\\.whl$"))))
(invoke "pip" "--no-cache-dir" "--no-input"
"install" "--no-deps" "--prefix" #$output whl)))))))
(native-inputs (list python-pypa-build python-flit-core python-pytest))
(propagated-inputs (list gmsh python-meshio python-numpy)) (propagated-inputs (list gmsh python-meshio python-numpy))
(home-page "https://github.com/nschloe/pygmsh") (home-page "https://github.com/nschloe/pygmsh")
(synopsis "Python frontend for Gmsh") (synopsis "Python frontend for Gmsh")