From 8394619baceb118df92e355377fd543bb1aa501a Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 13 Dec 2021 17:18:24 +0100 Subject: gnu: Simplify package inputs. This commit was obtained by running: ./pre-inst-env guix style without any additional argument. --- gnu/packages/python-build.scm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'gnu/packages/python-build.scm') diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 05263499dbb..1db5a6b3350 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -189,8 +189,7 @@ Python file, so it can be easily copied into your project.") (arguments `(#:tests? #f)) ;to avoid circular dependencies (propagated-inputs - `(("python-toml" ,python-toml) - ("python-wheel" ,python-wheel))) + (list python-toml python-wheel)) (home-page "https://github.com/pypa/pep517") (synopsis "Wrappers to build Python packages using PEP 517 hooks") (description @@ -268,8 +267,7 @@ that client code uses to construct the grammar directly in Python code.") (build-system python-build-system) (arguments `(#:tests? #f)) ;disabled to avoid extra dependencies (propagated-inputs - `(("python-pyparsing" ,python-pyparsing) - ("python-six-bootstrap" ,python-six-bootstrap))) + (list python-pyparsing python-six-bootstrap)) (home-page "https://github.com/pypa/packaging") (synopsis "Core utilities for Python packages") (description "Packaging is a Python module for dealing with Python packages. @@ -350,7 +348,7 @@ compatible build front-ends to build Poetry managed projects.") (base32 "10vjqnybvjdqdbmyc0asbhhvq51yjnnj00645yiq9849gnr8h0ir")))) (build-system python-build-system) (propagated-inputs - `(("python-toml" ,python-toml))) + (list python-toml)) (arguments ;; flit-core has a test suite, but it requires Pytest. Disable it so ;; as to not pull pytest as an input. -- cgit v1.3