mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: python-openapi-schema-validator: Relax requirements.
* gnu/packages/python-web.scm (python-openapi-schema-validator)[arguments]: Add phase 'relax-requirements. Change-Id: I57dcc2030bca914af730922f9c511fab286f9d7d
This commit is contained in:
parent
7a5003a8b9
commit
ee60ed4892
1 changed files with 7 additions and 1 deletions
|
@ -2540,7 +2540,13 @@ (define-public python-openapi-schema-validator
|
|||
(add-after 'unpack 'remove-coverage-pytest-options
|
||||
(lambda _
|
||||
(substitute* "pyproject.toml"
|
||||
(("^--cov.*") "")))))))
|
||||
(("^--cov.*") ""))))
|
||||
;; See https://github.com/python-openapi/openapi-schema-validator/issues/204
|
||||
(add-after 'unpack 'relax-requirements
|
||||
(lambda _
|
||||
(substitute* "pyproject.toml"
|
||||
(("jsonschema-specifications.*")
|
||||
"jsonschema-specifications = \">=2023.5.2\"\n")))))))
|
||||
(native-inputs (list python-poetry-core python-pytest))
|
||||
(propagated-inputs
|
||||
(list python-isodate
|
||||
|
|
Loading…
Reference in a new issue