mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: python-omegaconf: Fix build system errors.
* gnu/packages/python-xyz.scm (python-omegaconf)[arguments]: Fix syntax error in version specification; do not trigger errors on deprecation warnings. Change-Id: Ida873c11255ffb65d888378cdd77a9205163016a
This commit is contained in:
parent
a78de8f792
commit
c0c713be66
1 changed files with 5 additions and 2 deletions
|
@ -17579,8 +17579,11 @@ (define-public python-omegaconf
|
|||
(add-after 'unpack 'loosen-requirements
|
||||
(lambda _
|
||||
(substitute* "requirements/base.txt"
|
||||
(("antlr4-python3-runtime==")
|
||||
"antlr4-python3-runtime>=")))))))
|
||||
(("antlr4-python3-runtime==.*")
|
||||
"antlr4-python3-runtime >=4.9\n"))
|
||||
;; Ignore deprecation warnings.
|
||||
(substitute* "pyproject.toml"
|
||||
(("-Werror") "")))))))
|
||||
(propagated-inputs (list java-antlr4-runtime-python
|
||||
python-pydevd
|
||||
python-pyyaml))
|
||||
|
|
Loading…
Reference in a new issue