diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-10-17 10:59:38 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-10-23 19:23:14 +0200 |
commit | b5c347ad3d83ee580c111bd14c80b469b0dcb294 (patch) | |
tree | aa6b74bacc98b63e2b0e619d2c78ec202fa0fe9b /guix | |
parent | 373e765ec31b1954c1ab279bd63fb7b1616de286 (diff) |
import: pypi: All inputs are propagated-inputs by default.
* guix/import/pypi.scm (maybe-inputs): Return inputs as
"propagated-inputs".
Diffstat (limited to 'guix')
-rw-r--r-- | guix/import/pypi.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm index 8aeffb2326..68153d5ab1 100644 --- a/guix/import/pypi.scm +++ b/guix/import/pypi.scm @@ -111,7 +111,7 @@ package definition." (() '()) ((package-inputs ...) - `((inputs (,'quasiquote ,package-inputs)))))) + `((propagated-inputs (,'quasiquote ,package-inputs)))))) (define (guess-requirements source-url wheel-url tarball) "Given SOURCE-URL, WHEEL-URL and a TARBALL of the package, return a list of |