diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-05-10 23:29:52 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:37:05 +0100 |
| commit | f22f5384473019b1c31d6fcf59061642c6116ae7 (patch) | |
| tree | 4b95b68c9c36d7141e976063357286c752911f44 | |
| parent | 79895fe020eb4c5c9ae94c343d654c1719194b35 (diff) | |
gnu: python-schema: Update to 0.7.8.
* gnu/packages/python-xyz.scm (python-schema): Update to 0.7.8.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
Change-Id: Idbb469a7c5e2e30e18799976c26819b99e53f0b7
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 11683e06e8..f1a83ea7fe 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9001,19 +9001,19 @@ from Python as a referencing-based Schema Registry.") (define-public python-schema (package (name "python-schema") - (version "0.7.7") + (version "0.7.8") (source (origin - (method url-fetch) - (uri (pypi-uri "schema" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/keleshev/schema") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "01qq1amzbjm1kvjrnnhpjs8v761kwp6qihs74pf1k2lmsamm79bx")))) + (base32 "149smlvj0jlvpsw39lw84c29prg76k1gr6iazl9fqydaqiaw52c5")))) (build-system pyproject-build-system) (native-inputs - (list python-pytest - python-setuptools - python-wheel)) + (list python-pytest python-setuptools)) (home-page "https://github.com/keleshev/schema") (synopsis "Simple data validation library") (description |
