diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2023-07-30 13:36:37 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2023-08-02 12:29:57 +0200 |
commit | b3726639df72aa3943d8e403e3c2b9a6cde05421 (patch) | |
tree | c356a6fd58dc0a3ba1b472191b0b10e1ad4e660e /gnu/packages/python-science.scm | |
parent | e987a9e28ec0d8d1b8ecdb2486eb12eae270a49d (diff) |
guix: pyproject-build-system: Default configure-flags to empty dictionary.pyproject-toml
PEP 517 specifies it should be a dictionary and thus meson-python cannot
handle an empty list.
Fixes: <https://issues.guix.gnu.org/62781>
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r-- | gnu/packages/python-science.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 538a3c2f0e..47890389b5 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -93,11 +93,6 @@ (build-system pyproject-build-system) (arguments (list - ;; FIXME: The default 'mesonpy' build system doesn't seem to work with - ;; our pyproject-build-system, errors with: AttributeError: 'list' - ;; object has no attribute 'items' (see: - ;; https://issues.guix.gnu.org/62781). - #:build-backend "setuptools.build_meta" #:phases #~(modify-phases %standard-phases (replace 'check |