diff options
author | Marius Bakke <marius@gnu.org> | 2021-06-04 14:50:59 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-06-04 14:57:39 +0200 |
commit | bb934ab79d014198404c3678e8a278c1b334b6fb (patch) | |
tree | f5e14b2818d44dea05c0f8d4ad1be64c8038e4c7 | |
parent | 1ea00cceefa4a2e3832423bb80180256531ff589 (diff) | |
download | guix-bb934ab79d014198404c3678e8a278c1b334b6fb.tar guix-bb934ab79d014198404c3678e8a278c1b334b6fb.tar.gz |
gnu: python-pydantic: Update to 1.8.2.
* gnu/packages/python-xyz.scm (python-pydantic): Update to 1.8.2.
[arguments]: Disable some new tests.
[native-inputs]: Add PYTHON-PYTEST-MOCK.
[propagated-inputs]: Add PYTHON-TYPING-EXTENSIONS.
-rw-r--r-- | gnu/packages/python-xyz.scm | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a5cc04edaf..f21fb53cc5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4527,7 +4527,7 @@ which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.") (define-public python-pydantic (package (name "python-pydantic") - (version "1.6.1") + (version "1.8.2") (source (origin (method git-fetch) @@ -4536,24 +4536,39 @@ which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1380s9k77g6q15by9fkxndczjk89q6xpz09jdrqip535xws2z3j8")))) + (base32 "06162dss6mvi7wiy2lzxwvzajwxgy8b2fyym7qipaj7zibcqalq2")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases - ;; Reported upstream: - ;; <https://github.com/samuelcolvin/pydantic/issues/1580>. - ;; Disable the faulty test as the fix is unclear. (add-before 'check 'disable-test (lambda _ + ;; Reported upstream: + ;; <https://github.com/samuelcolvin/pydantic/issues/1580>. + ;; Disable the faulty test as the fix is unclear. (substitute* "tests/test_validators.py" (("test_assert_raises_validation_error") "_test_assert_raises_validation_error")) - #t)) + + ;; These fail because of <https://bugs.python.org/issue40398>. + ;; Remove after Python has been upgraded to >= 3.9. + (substitute* "tests/test_generics.py" + (("assert replace_types\\(Callable, \\{T: int\\}\\) == Callable") + "")) + (substitute* "tests/test_schema.py" + (("test_unenforced_constraints_schema") + "_test_unenforced_constraints_schema")) + + ;; Disable tests for the Hypothesis plugin because it is tricky + ;; to configure in the build container. + (delete-file "tests/test_hypothesis_plugin.py"))) (replace 'check - (lambda _ (invoke "pytest" "-vv" "tests")))))) + (lambda _ (invoke "pytest" "-vv")))))) (native-inputs - `(("python-pytest" ,python-pytest))) + `(("python-pytest" ,python-pytest) + ("python-pytest-mock" ,python-pytest-mock))) + (propagated-inputs + `(("python-typing-extensions" ,python-typing-extensions))) (home-page "https://github.com/samuelcolvin/pydantic") (synopsis "Python data validation and settings management") (description |