[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
80/222: gnu: python-jsonschema: Update to 4.22.0.
From: |
guix-commits |
Subject: |
80/222: gnu: python-jsonschema: Update to 4.22.0. |
Date: |
Fri, 1 Nov 2024 10:56:28 -0400 (EDT) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit 021e65885cbf67976d979ed0689a781022fc165e
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 7 13:11:06 2024 +0200
gnu: python-jsonschema: Update to 4.22.0.
* gnu/packages/python-xyz.scm (python-jsonschema): Update to 4.22.0.
[arguments]: Remove custom 'check phase; remove 'pretend-version phase; add
'pre-check and 'patch-pyproject phases.
[native-inputs]: Add python-hatchling, python-hatch-fancy-pypi-readme,
python-hatch-vcs, and python-pytest; remove python-setuptools-scm,
python-twisted, python-setuptools, and python-wheel.
[propagated-inputs]: Remove python-importlib-metadata, python-pyrsistent,
and
python-typing-extensions; add python-fqdn, python-idna,
python-importlib-resources, python-isoduration, python-jsonpointer,
python-jsonschema-specifications, python-rfc3339-validator,
python-rfc3986-validator, python-referencing-bootstrap,
python-rpds-py, python-uri-template, and python-webcolors.
(python-jsonschema-3)[propagated-inputs]: Override.
[native-inputs]: Override.
Change-Id: I4eccd4b92bcf84458616a64864981befa3541146
---
gnu/packages/python-xyz.scm | 54 ++++++++++++++++++++++++++++-----------------
1 file changed, 34 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 04e86fc6cc..d71ce501b9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5988,38 +5988,44 @@ and convert DDL to BigQuery JSON schema.")
(define-public python-jsonschema
(package
(name "python-jsonschema")
- ;; XXX: Update to the latest version requires new build system - Hatch
- ;; https://hatch.pypa.io/
- (version "4.5.1")
+ (version "4.22.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "jsonschema" version))
(sha256
- (base32 "1z0x22691jva7lwfcfh377jdmlz68zhiawxzl53k631l34k8hvbw"))))
+ (base32 "1dx2c7vgsqas61mj00b6ix75cvax5s32qmchz6d12darlhsd88jv"))))
(build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
- (add-before 'build 'pretend-version
- ;; The version string is usually derived via setuptools-scm, but
- ;; without the git metadata available, the version string is set to
- ;; '0.0.0'.
+ (add-after 'unpack 'patch-pyproject
(lambda _
- (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "JSON_SCHEMA_TEST_SUITE" "json")
- (invoke "trial" "jsonschema")))))))
- (native-inputs (list python-setuptools-scm python-twisted
- python-setuptools python-wheel))
+ ;; The build system does not like this.
+ (substitute* "pyproject.toml"
+ ((" \"Topic :: File Formats.*") ""))))
+ (add-before 'check 'pre-check
+ (lambda _
+ (setenv "JSON_SCHEMA_TEST_SUITE" "json"))))))
+ (native-inputs (list python-hatchling
+ python-hatch-fancy-pypi-readme
+ python-hatch-vcs
+ python-pytest))
(propagated-inputs
(list python-attrs
- python-importlib-metadata
- python-pyrsistent
- python-typing-extensions))
+ python-fqdn
+ python-idna
+ python-importlib-resources
+ python-isoduration
+ python-jsonpointer
+ python-jsonschema-specifications
+ python-rfc3339-validator
+ python-rfc3986-validator
+ python-referencing-bootstrap
+ python-rpds-py
+ python-uri-template
+ python-webcolors))
(home-page "https://github.com/Julian/jsonschema")
(synopsis "Implementation of JSON Schema for Python")
(description
@@ -6042,7 +6048,15 @@ and convert DDL to BigQuery JSON schema.")
#~(modify-phases #$phases
(replace 'pretend-version
(lambda _
- (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))))))))
+ (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))))))
+ (propagated-inputs
+ (list python-attrs
+ python-importlib-metadata
+ python-pyrsistent
+ python-typing-extensions))
+ (native-inputs
+ (list python-setuptools-scm python-twisted
+ python-setuptools python-wheel))))
(define-public python-jsonschema-specifications
(package
- 59/222: gnu: python-jinja2: Add setuptools and wheel., (continued)
- 59/222: gnu: python-jinja2: Add setuptools and wheel., guix-commits, 2024/11/01
- 63/222: gnu: python-rich: Remove python-ipywidgets., guix-commits, 2024/11/01
- 66/222: gnu: Add python-jsonschema-specifications., guix-commits, 2024/11/01
- 67/222: gnu: Add python-rfc3986-validator., guix-commits, 2024/11/01
- 68/222: gnu: Add python-isoduration., guix-commits, 2024/11/01
- 69/222: gnu: Add python-uri-template., guix-commits, 2024/11/01
- 71/222: gnu: Add python-overrides., guix-commits, 2024/11/01
- 72/222: gnu: Add python-hatch-jupyter-builder., guix-commits, 2024/11/01
- 77/222: gnu: python-jedi: Update to 0.19.1., guix-commits, 2024/11/01
- 79/222: gnu: python-argon2-cffi: Update to 21.1.0., guix-commits, 2024/11/01
- 80/222: gnu: python-jsonschema: Update to 4.22.0.,
guix-commits <=
- 81/222: gnu: python-websocket-client: Update to 1.8.0., guix-commits, 2024/11/01
- 86/222: gnu: python-jupyter-core: Update to 5.7.2., guix-commits, 2024/11/01
- 89/222: gnu: python-nbformat: Update to 5.10.4., guix-commits, 2024/11/01
- 93/222: gnu: python-json-logger: Update to 2.0.7., guix-commits, 2024/11/01
- 92/222: gnu: python-jupyter-client: Update to 7.4.4., guix-commits, 2024/11/01
- 95/222: gnu: python-notebook: Update to 6.5.7., guix-commits, 2024/11/01
- 97/222: gnu: Add python-jupyter-server-terminals., guix-commits, 2024/11/01
- 25/222: gnu: python-textual: Update to 0.50.1., guix-commits, 2024/11/01
- 33/222: gnu: Add python-rapidfuzz., guix-commits, 2024/11/01
- 41/222: gnu: python-pycurl: Add missing inputs., guix-commits, 2024/11/01