mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: python-flask-restful: Rewrite import.
It seems a function inside python-flask moved to a different module. * gnu/packages/python-web.scm (python-flask-restful)[arguments]: Add phase rewriting imports from flask.helpers to flask.scaffold.
This commit is contained in:
parent
44e1300994
commit
974264af37
1 changed files with 7 additions and 0 deletions
|
@ -3335,6 +3335,13 @@ (define-public python-flask-restful
|
|||
(base32
|
||||
"05b9lzx5yc3wgml2bcq50lq35h66m8zpj6dc9advcb5z3acsbaay"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-imports
|
||||
(lambda _
|
||||
(substitute* "flask_restful/__init__.py"
|
||||
(("flask\\.helpers") "flask.scaffold")))))))
|
||||
(propagated-inputs
|
||||
(list python-aniso8601 python-flask python-pycrypto python-pytz))
|
||||
(native-inputs
|
||||
|
|
Loading…
Reference in a new issue