mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -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
|
(sort
|
||||||
(map (lambda (input)
|
(map (lambda (input)
|
||||||
(list input (list 'unquote (string->symbol 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" <>)
|
(remove (cut string=? "python-argparse" <>)
|
||||||
(guess-requirements source-url wheel-url tarball))))
|
(guess-requirements source-url wheel-url tarball)))
|
||||||
(lambda args
|
(lambda args
|
||||||
(match args
|
(match args
|
||||||
(((a _ ...) (b _ ...))
|
(((a _ ...) (b _ ...))
|
||||||
|
|
Loading…
Reference in a new issue