gnu: python-flask-restx: Update to 1.3.0.

* gnu/packages/python-web.scm (python-flask-restx): Update to 1.3.0.
[arguments]<#:phases>[check]: Exclude test.

Change-Id: Ib01efe9e98e8b9971286a83266011fa0d7b2ca45
This commit is contained in:
Danny Milosavljevic 2024-12-20 10:59:29 +01:00
parent 80ee613dec
commit 946e48d1d8
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -7479,7 +7479,7 @@ requests.")
(define-public python-flask-restx
(package
(name "python-flask-restx")
(version "0.5.1")
(version "1.3.0")
(source
;; We fetch from the Git repo because there are no tests in the PyPI
;; archive.
@ -7490,7 +7490,7 @@ requests.")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "18vrmknyxw6adn62pz3kr9kvazfgjgl4pgimdf8527fyyiwcqy15"))))
(base32 "1qmm3i1cdv0bvzsc1gn4ql2dsf1fbx85fk69vcmzpsdxzczmw508"))))
(build-system python-build-system)
(propagated-inputs
(list python-aniso8601 python-flask python-jsonschema python-pytz))
@ -7509,9 +7509,12 @@ requests.")
(invoke "pytest" "--benchmark-skip" "-k"
;; Those tests need internet access
(string-join
'("not test_check and not test_valid_value_check \
and not test_override_app_level"
"not test_redirect") " and ")))))))
'("not test_check"
"not test_valid_value_check"
"not test_override_app_level"
"not test_redirect"
"not test_swagger")
" and ")))))))
(home-page "https://github.com/python-restx/flask-restx")
(synopsis
"Framework for fast, easy and documented API development with Flask")