diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-02-27 08:40:50 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:30 +0000 |
commit | 976cb712f581495194449e4c5f4627c2b8e5e6ba (patch) | |
tree | b7c084479b750a08452063835ff850012bbb6870 /gnu | |
parent | 332ae4deda16f39dd03145f0b8181ffc085d4a17 (diff) | |
download | guix-976cb712f581495194449e4c5f4627c2b8e5e6ba.tar.gz guix-976cb712f581495194449e4c5f4627c2b8e5e6ba.zip |
gnu: meson-python: Do not delete LICENSES directory.
* gnu/packages/build-tools.scm (meson-python)[arguments]: Remove custom
phases.
Change-Id: I653d18200dbb718791b3e193105b7ce9b22aa6e2
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/build-tools.scm | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm index 20106437b1..31876e087f 100644 --- a/gnu/packages/build-tools.scm +++ b/gnu/packages/build-tools.scm @@ -347,14 +347,7 @@ resembles Python.") (list #:test-flags #~(list "tests" ;; The test_pep518 tries to install ;; dependencies from the network using pip. - "-k" "not test_pep518") - #:phases - '(modify-phases %standard-phases - ;; This additional top directory confuses setuptools. We could - ;; work around this by overriding the detection of the project - ;; directory, but deleting this directory is easier. - (add-after 'unpack 'delete-directory - (lambda _ (delete-file-recursively "LICENSES")))))) + "-k" "not test_pep518"))) (propagated-inputs (list meson ninja |