diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-17 00:30:18 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:18 +0100 |
| commit | 93b40d330fc313e398a1aef4d73ade83d47650ad (patch) | |
| tree | 90300785f269a9e5bab9e4a3b4cb6b9e85f20b39 /gnu/packages/maths.scm | |
| parent | 29f2f54fe880f0610cbba7a7ca4661e0fd3f3e77 (diff) | |
build-system/pyproject: Remove uneeded use of pyproject-guile-json.
* gnu/packages/bioinformatics.scm (python-bed-reader, python-gseapy)
* gnu/packages/chemistry.scm (gemmi, ringdecomposerlib, rdkit)
* gnu/packages/cinnamon.scm (libxapp)
* gnu/packages/cups.scm (hplip)
* gnu/packages/djvu.scm (ocrodjvu)
* gnu/packages/finance.scm (electron-cash)
* gnu/packages/gnome.scm (terminator)
* gnu/packages/image-processing.scm (insight-toolkit)
* gnu/packages/machine-learning.scm (onnxruntime, tensorflow-lite,
koboldcpp, python-tokenizers)
* gnu/packages/maths.scm (gmsh, z3, fp16)
* gnu/packages/music.scm (quodlibet)
* gnu/packages/photo.scm (lensfun)
* gnu/packages/python-science.scm (python-clarabel)
* gnu/packages/python-xyz.scm (python-orjson, python-libcst,
python-rpds-py, python-streamtracer, python-tiktoken)
* gnu/packages/rpm.scm (createrepo-c)
* gnu/packages/rust-apps.scm (maturin)
* gnu/packages/sugar.scm (sugar, sugar-datastore)
* gnu/packages/version-control.scm (mercurial, hg-commitsigs)
* gnu/packages/vpn.scm (python-proton-vpn-local-agent)
[arguments]<#:phases>: Remove uneeded use of pyproject-guile-json
extension.
* gnu/packages/python-xyz.scm (python-streamtracer)[arguments]
<#:phases>: Also rewrite 'check phase replacement.
Change-Id: I779c354120ada3d94f07a127b9ec5011e73254c2
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/maths.scm')
| -rw-r--r-- | gnu/packages/maths.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index ca4713dfa7e..c231af8fd47 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -3777,7 +3777,6 @@ supports the propositional fragment of PDDL2.2.") (guix build cmake-build-system) (guix build utils)) #:phases - (with-extensions (list (pyproject-guile-json)) #~(modify-phases %standard-phases (add-after 'unpack 'patch-paths (lambda* (#:key inputs outputs #:allow-other-keys) @@ -3795,7 +3794,7 @@ supports the propositional fragment of PDDL2.2.") "/lib/libgmsh.so"))) (substitute* "api/gmsh.py" (("find_library\\(\"gmsh\"\\)") - (simple-format #f "\"~a\"" libgmsh)))))))))) + (simple-format #f "\"~a\"" libgmsh))))))))) (inputs (list fltk fontconfig @@ -8670,7 +8669,6 @@ arrays, uninterpreted functions and their combinations.") #$(version-major+minor (package-version python-wrapper)) "/site-packages")) #:phases - (with-extensions (list (pyproject-guile-json)) #~(modify-phases %standard-phases (replace 'check (lambda* (#:key parallel-build? tests? #:allow-other-keys) @@ -8690,7 +8688,7 @@ arrays, uninterpreted functions and their combinations.") "/z3/lib/libz3.so")) (z3-lib (string-append #$output "/lib/libz3.so"))) (mkdir-p (dirname dest)) - (symlink z3-lib dest)))))))) + (symlink z3-lib dest))))))) (native-inputs (list which python-wrapper)) (synopsis "Theorem prover") @@ -10815,7 +10813,6 @@ when an application performs repeated divisions by the same divisor.") (guix build cmake-build-system) (guix build utils)) #:phases - (with-extensions (list (pyproject-guile-json)) #~(modify-phases %standard-phases (add-after 'install 'move-python-files (lambda* (#:key inputs outputs #:allow-other-keys) @@ -10829,7 +10826,7 @@ when an application performs repeated divisions by the same divisor.") (rename-file file (string-append target "/" (basename file)))) - (find-files include "\\.py$"))))))))) + (find-files include "\\.py$")))))))) (native-inputs (list python-wrapper)) (inputs (list psimd googletest-1.8 googlebenchmark)) (synopsis "C++ library for half-precision floating point formats") |
