gnu: python-jsonschema-specifications: Update to 2024.10.1.

* gnu/packages/python-xyz.scm (python-jsonschema-specifications):
Update to 2024.10.1.
[arguments]<phases>: Remove 'patch-pyproject as build system started
liking it.

Change-Id: Idf2ac2f92734682751ac78ccf7000820ad141263
This commit is contained in:
Sharlatan Hellseher 2024-11-26 23:42:48 +00:00
parent d9bbc3cabc
commit 8e7c4d8df9
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -6123,27 +6123,21 @@ dereferencing accessor layer.")
(define-public python-jsonschema-specifications
(package
(name "python-jsonschema-specifications")
(version "2023.12.1")
(version "2024.10.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "jsonschema_specifications" version))
(sha256
(base32 "1k348xkq45jx13kmv32ls6k4qvjq3ywd4q0i7zamw3z7nf3ng9s8"))))
(base32 "0wp2g90jsaa48g1v0n6m43ywhh9cj1ig19q25lay334m74vbhf0g"))))
(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.*") "")))))))
(propagated-inputs (list python-importlib-resources
python-referencing-bootstrap))
(native-inputs
(list python-hatchling python-hatch-vcs python-pytest))
(list python-hatch-vcs
python-hatchling
python-pytest))
(propagated-inputs
(list python-importlib-resources
python-referencing-bootstrap))
(home-page "https://github.com/python-jsonschema/jsonschema-specifications")
(synopsis
"JSON Schema meta-schemas and vocabularies, exposed as a Registry")