summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-11 23:11:09 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:23:23 +0000
commitf881b16ab78ac93ecedacb9bc0072767f7877b77 (patch)
tree6e340cf38247ac489b6073b0bfdf0ad1ce070dc6 /gnu/packages/python-xyz.scm
parent3bfea206eb5ba8f66afbac2a4b5124a354fa440a (diff)
gnu: python-jsonschema: Update to 4.23.0.
* gnu/packages/python-xyz.scm (python-jsonschema): Update to 4.23.0. [arguments]<phases>: Remove 'patch-pyproject phase. [native-inputs]: Add python-pip. Change-Id: I20b7b72ee66982c23a134caabe267cdccbdd5196
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm20
1 files changed, 9 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 30ece9a824..ecadad4995 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6018,30 +6018,28 @@ and convert DDL to BigQuery JSON schema.")
(define-public python-jsonschema
(package
(name "python-jsonschema")
- (version "4.22.0")
+ (version "4.23.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "jsonschema" version))
(sha256
- (base32 "1dx2c7vgsqas61mj00b6ix75cvax5s32qmchz6d12darlhsd88jv"))))
+ (base32 "1i3b4sckkc3v8vckqa11xbrj695qzrzsfzrkclra6lb3ybz9f56p"))))
(build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
- (add-after 'unpack 'patch-pyproject
- (lambda _
- ;; 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))
+ (native-inputs
+ (list python-hatchling
+ python-hatch-fancy-pypi-readme
+ python-hatch-vcs
+ ;; For <tests/test_cli.py::TestCLIIntegration::test_license>.
+ python-pip
+ python-pytest))
(propagated-inputs
(list python-attrs
python-fqdn