mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
import: pypi: Don't add setuptools to propagated-inputs.
* guix/import/pypi.scm (compute-inputs): Don't add setuptools to the imported package's propagated-inputs.
This commit is contained in:
parent
db6afe387a
commit
2f977d92d3
1 changed files with 2 additions and 4 deletions
|
@ -227,10 +227,8 @@ (define (compute-inputs source-url wheel-url tarball)
|
|||
(sort
|
||||
(map (lambda (input)
|
||||
(list input (list 'unquote (string->symbol input))))
|
||||
(append '("python-setuptools")
|
||||
;; Argparse has been part of Python since 2.7.
|
||||
(remove (cut string=? "python-argparse" <>)
|
||||
(guess-requirements source-url wheel-url tarball))))
|
||||
(remove (cut string=? "python-argparse" <>)
|
||||
(guess-requirements source-url wheel-url tarball)))
|
||||
(lambda args
|
||||
(match args
|
||||
(((a _ ...) (b _ ...))
|
||||
|
|
Loading…
Reference in a new issue