mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 06:42:14 -05:00
gnu: python-pyyaml: Fix build.
python-cython is required to generate the C source for the libyaml extension, which is required for the `_yaml' module to work. This in turn lets the `sanity-check' phase succeed. * gnu/packages/python-xyz.scm (python-pyyaml)[inputs]: Add python-cython.
This commit is contained in:
parent
c823b95825
commit
80506bc6da
1 changed files with 2 additions and 1 deletions
|
@ -3524,7 +3524,8 @@ (define-public python-pyyaml
|
||||||
"0pm440pmpvgv5rbbnm8hk4qga5a292kvlm1bh3x2nwr8pb5p8xv0"))))
|
"0pm440pmpvgv5rbbnm8hk4qga5a292kvlm1bh3x2nwr8pb5p8xv0"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("libyaml" ,libyaml)))
|
`(("libyaml" ,libyaml)
|
||||||
|
("python-cython" ,python-cython)))
|
||||||
(home-page "https://pyyaml.org")
|
(home-page "https://pyyaml.org")
|
||||||
(synopsis "YAML parser and emitter for Python")
|
(synopsis "YAML parser and emitter for Python")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue