aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@zancanaro.id.au>2017-01-21 16:15:21 +1100
committerHartmut Goebel <h.goebel@crazy-compilers.com>2017-01-26 13:44:31 +0100
commit2f977d92d3ae517788d3dee98f63680ca149aa1a (patch)
tree88f69e108ec4f41db47e26e2f2931002a59d1a73
parentdb6afe387ae74943a0c66c7488be49bd509b51c4 (diff)
downloadguix-2f977d92d3ae517788d3dee98f63680ca149aa1a.tar
guix-2f977d92d3ae517788d3dee98f63680ca149aa1a.tar.gz
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.
-rw-r--r--guix/import/pypi.scm6
1 files changed, 2 insertions, 4 deletions
diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm
index 7cce0fc594..ed0d4297a4 100644
--- a/guix/import/pypi.scm
+++ b/guix/import/pypi.scm
@@ -227,10 +227,8 @@ name/variable pairs describing the required inputs of this package."
(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 _ ...))