mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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 @@ name/variable pairs describing the required inputs of this package."
|
||||||
(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…
Add table
Add a link
Reference in a new issue