From bfe66d4a2a1c8c3ea94f7cfbf59f26eaac0fe1b6 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Fri, 1 Apr 2022 16:49:40 -0400 Subject: import: pypi: Use new style for the conditional unzip input. * guix/import/pypi.scm (make-pypi-sexp): Use new style. --- guix/import/pypi.scm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm index 77b5f12f72..392fc9700b 100644 --- a/guix/import/pypi.scm +++ b/guix/import/pypi.scm @@ -457,9 +457,7 @@ VERSION, SOURCE-URL, HOME-PAGE, SYNOPSIS, DESCRIPTION, and LICENSE." (match guix-dependencies ((required-inputs native-inputs) (when (string-suffix? ".zip" source-url) - (set! native-inputs (cons - '("unzip" ,unzip) - native-inputs))) + (set! native-inputs (cons 'unzip native-inputs))) (values `(package (name ,(python->package-name name)) -- cgit 1.4.1