mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
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:
parent
e97e6c05cd
commit
1ea198f862
1 changed files with 9 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue