me
/
guix
Archived
1
0
Fork 0

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.
master
Julien Lepiller 2021-07-10 01:36:50 +02:00
parent c823b95825
commit 80506bc6da
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 2 additions and 1 deletions

View File

@ -3524,7 +3524,8 @@ environments and back.")
"0pm440pmpvgv5rbbnm8hk4qga5a292kvlm1bh3x2nwr8pb5p8xv0"))))
(build-system python-build-system)
(inputs
`(("libyaml" ,libyaml)))
`(("libyaml" ,libyaml)
("python-cython" ,python-cython)))
(home-page "https://pyyaml.org")
(synopsis "YAML parser and emitter for Python")
(description