gnu: python-packaging-bootstrap: Remove dependency.

* gnu/packages/python-xyz.scm (python-packaging-bootstrap) [arguments]:
Remove dependency from setup.py, which we do not provide for this
variant.
This commit is contained in:
Lars-Dominik Braun 2021-01-07 14:16:05 +01:00 committed by Maxim Cournoyer
parent e97e6c05cd
commit 1ea198f862
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -16013,10 +16013,17 @@ (define-public python-packaging-bootstrap
(package/inherit (package/inherit
python-packaging python-packaging
(name "python-packaging-bootstrap") (name "python-packaging-bootstrap")
(arguments
(substitute-keyword-arguments (package-arguments python-packaging)
((#:phases phases)
`(modify-phases ,phases
(add-after 'unpack 'fix-dependencies
(lambda* (#:key tests? #:allow-other-keys)
(substitute* "setup.py" (("\"six\"") ""))))))
((#:tests? _ #f) #f)))
(native-inputs '()) (native-inputs '())
(propagated-inputs (propagated-inputs
`(("python-pyparsing" ,python-pyparsing))) `(("python-pyparsing" ,python-pyparsing))))))
(arguments '(#:tests? #f)))))
(define-public python2-packaging-bootstrap (define-public python2-packaging-bootstrap
(hidden-package (hidden-package