diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-01 13:56:08 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-02 23:16:28 +0100 |
commit | 8bb19cd7bd921510c0af218a79f7da37792c4c40 (patch) | |
tree | ce9012215e5e6c51dc884709801998b0f434057b | |
parent | 7d9b41002aadd2d4d3b3bf198d6bc4de51002613 (diff) |
gnu: python-schema: Update to 0.7.7.
* gnu/packages/python-xyz.scm (python-schema): Update to 0.7.7.
[build-system]: Use pyproject.
[native-inputs]: Add python-setuptools, and python-wheel.
Change-Id: I77b48501d91b8d236ca45ba444a56616f8e377df
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 76c874fdf9..417b4408fd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7292,17 +7292,19 @@ from Python as a referencing-based Schema Registry.") (define-public python-schema (package (name "python-schema") - (version "0.6.6") + (version "0.7.7") (source (origin (method url-fetch) (uri (pypi-uri "schema" version)) (sha256 (base32 - "1lw28j9w9vxyigg7vkfkvi6ic9lgjkdnfvnxdr7pklslqvzmk2vm")))) - (build-system python-build-system) + "01qq1amzbjm1kvjrnnhpjs8v761kwp6qihs74pf1k2lmsamm79bx")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-pytest + python-setuptools + python-wheel)) (home-page "https://github.com/keleshev/schema") (synopsis "Simple data validation library") (description |